body.home-v2-active {
	padding-bottom: 0;
	background: var(--color-primary);
}

.home-v2-sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.home-v2-page {
	padding-bottom: 0;
	background: #fff;
	--home-v2-section-gap: 72px;
	--home-v2-stack-gap: 28px;
	--home-v2-card-gap: 18px;
	--home-v2-group-gap: 16px;
	--home-v2-cta-gap: 28px;
	--home-v2-block-radius: 20px;
	--home-v2-arrow-size: 34px;
	--home-v2-header-offset: 88px;
	--home-v2-wide-max: 1480px;
	--home-v2-hero-content-max: 1280px;
	--home-v2-link-hover: var(--color-primary);
	--home-v2-link-hover-border: rgba(126, 4, 15, 0.28);
	--home-v2-link-hover-bg: rgba(126, 4, 15, 0.08);
	--home-v2-hero-frame-height: clamp(640px, calc(100svh - 150px), 980px);
	--home-v2-hero-media-position: 50% 50%;
	--home-v2-hero-media-transform: none;
}

.home-v2-page :where(button.popup-link) {
	border: 0;
	cursor: pointer;
}

.home-v2-page :where(button.popup-link:not(.btn)) {
	font: inherit;
}

body.home-v2-active .home-v2-header.is-menu-open {
	z-index: 100000;
}

body.home-v2-active .popup.is-active {
	z-index: 100001;
}

.home-v2-page :where(button.home-v2-hero__sidepanel-link,
button.home-v2-routes__card-link,
button.home-v2-projects__footer-link) {
	padding: 0;
	background: transparent;
	color: inherit;
	text-align: left;
}

.home-v2-header__container,
.home-v2-page > section:not(.home-v2-hero) > .container {
	width: min(100%, var(--home-v2-wide-max));
	margin-inline: auto;
}

.home-v2-header {
	position: absolute;
	inset: 0 0 auto 0;
	z-index: 30;
	padding-top: 0;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	--home-v2-header-hover-color: #fff;
	--home-v2-header-hover-border: rgba(255, 255, 255, 0.5);
	--home-v2-header-hover-bg: rgba(255, 255, 255, 0.14);
}

.home-v2-header::before {
	content: "";
	position: absolute;
	inset: 0 0 auto 0;
	height: calc(var(--home-v2-header-offset) + 18px);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0) 62%, rgba(255, 255, 255, 0.08) 82%, rgba(255, 255, 255, 0) 100%);
	pointer-events: none;
}

.home-v2-header__container {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 22px 26px 12px 28px;
}

.home-v2-header__logo {
	flex: 0 0 auto;
	display: block;
	width: 126px;
	height: 48px;
}

.home-v2-header__panel {
	display: flex;
	align-items: center;
	flex: 1 1 auto;
	min-width: 0;
	gap: 18px;
}

.home-v2-header__nav {
	flex: 1 1 auto;
	min-width: 0;
	display: flex;
	justify-content: center;
}

.home-v2-header__menu {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
	gap: 24px;
	margin: 0;
	padding: 0;
	list-style: none;
	width: 100%;
}

.home-v2-header__menu .menu__item {
	margin: 0;
}

.home-v2-header__menu a,
.home-v2-header__phone-link,
.home-v2-header__search,
.home-v2-header__burger,
.home-v2-header__burger .burger,
.home-v2-header__burger .burger span {
	color: #fff;
	fill: #fff;
	stroke: #fff;
}

.home-v2-header__menu a,
.home-v2-header__phone-link,
.home-v2-header__search {
	transition:
		color 0.18s ease,
		border-color 0.18s ease,
		background-color 0.18s ease,
		opacity 0.18s ease,
		transform 0.18s ease,
		box-shadow 0.18s ease;
}

.home-v2-header__menu a,
.home-v2-header__phone-link {
	text-shadow: none;
}

.home-v2-header__menu a {
	position: relative;
	display: inline-flex;
	align-items: center;
	min-height: 36px;
	cursor: pointer;
}

.home-v2-header__menu a::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 4px;
	left: 0;
	height: 1px;
	background: currentColor;
	opacity: 0;
	transform: scaleX(0.45);
	transition:
		opacity 0.18s ease,
		transform 0.18s ease;
}

.home-v2-header__menu a:hover,
.home-v2-header__menu a:focus-visible {
	color: var(--home-v2-header-hover-color) !important;
}

.home-v2-header__menu a:hover::after,
.home-v2-header__menu a:focus-visible::after {
	opacity: 0.82;
	transform: scaleX(1);
}

.home-v2-header__menu a:focus-visible,
.home-v2-header__menu a:focus,
.home-v2-header__phone-link:focus-visible,
.home-v2-header__phone-link:focus,
.home-v2-header__search:focus-visible {
	outline: none;
	box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.48);
}

.home-v2-header__search:focus {
	outline: none;
	box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.48);
}

.home-v2-header__meta {
	display: flex;
	align-items: center;
	gap: 12px;
	flex: 0 0 auto;
	margin-left: auto;
}

.home-v2-header__search {
	appearance: none;
	-webkit-appearance: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 50%;
	background: transparent;
	cursor: pointer;
}

.home-v2-header__search .icon {
	display: block;
	fill: currentColor;
	stroke: currentColor;
}

.home-v2-header__search:hover,
.home-v2-header__search:focus,
.home-v2-header__search:focus-visible {
	border-color: var(--home-v2-header-hover-border) !important;
	background: var(--home-v2-header-hover-bg) !important;
	color: var(--home-v2-header-hover-color) !important;
	fill: var(--home-v2-header-hover-color) !important;
	stroke: var(--home-v2-header-hover-color) !important;
}

.home-v2-header__phone {
	white-space: nowrap;
}

.home-v2-header__phone-link {
	display: inline-flex;
	align-items: center;
	min-height: 36px;
	padding: 0 14px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.92);
	color: #2e2520;
	text-shadow: none;
	cursor: pointer;
}

.home-v2-header__phone-link .phone-reveal__action,
.home-v2-header__phone-link .phone-reveal__display {
	color: #2e2520;
}

.home-v2-header__phone-link:hover,
.home-v2-header__phone-link:focus,
.home-v2-header__phone-link:focus-visible {
	background: #fff;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
	transform: translateY(-1px);
	color: var(--home-v2-link-hover) !important;
}

.home-v2-header__phone-link:hover .phone-reveal__action,
.home-v2-header__phone-link:hover .phone-reveal__display,
.home-v2-header__phone-link:focus .phone-reveal__action,
.home-v2-header__phone-link:focus .phone-reveal__display,
.home-v2-header__phone-link:focus-visible .phone-reveal__action,
.home-v2-header__phone-link:focus-visible .phone-reveal__display {
	color: var(--home-v2-link-hover) !important;
}

.home-v2-header__burger {
	display: none;
	padding: 0;
	border: 0;
	background: transparent;
	color: inherit;
	font: inherit;
	cursor: pointer;
}

.home-v2-header__burger .burger {
	position: relative;
	display: block;
	width: 18px;
	height: 14px;
}

.home-v2-header__burger .burger span {
	position: absolute;
	left: 0;
	display: block;
	width: 18px;
	height: 2px;
	border-radius: 999px;
	background: currentColor;
}

.home-v2-header__burger .burger span:nth-child(1) {
	top: 0;
}

.home-v2-header__burger .burger span:nth-child(2) {
	top: 6px;
}

.home-v2-header__burger .burger span:nth-child(3) {
	top: 12px;
}

.home-v2-hero {
	margin-top: calc(var(--home-v2-header-offset) * -1);
	padding: var(--home-v2-header-offset) 0 0;
	background: #fff;
}

.home-v2-hero__container.container {
	box-sizing: border-box;
	width: 100%;
	max-width: none;
	padding: 0;
}

.home-v2-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
	gap: 44px;
	align-items: center;
}

.home-v2-hero__media-stage .home-v2-hero__frame {
	min-height: var(--home-v2-hero-frame-height);
	border-radius: 0;
	box-shadow: none;
}

.home-v2-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	display: flex;
	align-items: stretch;
	padding:
		clamp(90px, 9vw, 124px)
		max(28px, calc((100vw - var(--home-v2-wide-max)) / 2 + 40px))
		clamp(24px, 3.5vw, 34px);
	background:
		linear-gradient(90deg, rgba(18, 16, 14, 0.78) 0%, rgba(18, 16, 14, 0.54) 28%, rgba(18, 16, 14, 0.18) 56%, rgba(18, 16, 14, 0) 76%),
		linear-gradient(180deg, rgba(18, 16, 14, 0.16) 0%, rgba(18, 16, 14, 0) 24%, rgba(18, 16, 14, 0.12) 100%);
}

.home-v2-hero--media .home-v2-hero__content {
	max-width: var(--home-v2-hero-content-max);
	padding: 0;
	min-height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 32px;
	flex: 1 1 auto;
}

.home-v2-hero--media .home-v2-hero__eyebrow,
.home-v2-hero--media .home-v2-hero__title,
.home-v2-hero--media .home-v2-hero__lead,
.home-v2-hero--media .home-v2-hero__link {
	color: #fff;
}

.home-v2-hero--media .home-v2-hero__title {
	text-shadow: 0 8px 22px rgba(0, 0, 0, 0.24);
}

.home-v2-hero--media .home-v2-hero__material {
	border-color: rgba(255, 255, 255, 0.26);
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	backdrop-filter: blur(10px);
}

.home-v2-hero--media .home-v2-hero__link::after {
	border-color: rgba(255, 255, 255, 0.28);
	background:
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'%3E%3Cpath d='M3 7H11' stroke='white' stroke-width='1.4'/%3E%3Cpath d='M7 3L11 7L7 11' stroke='white' stroke-width='1.4'/%3E%3C/svg%3E")
		center/14px 14px no-repeat;
}

.home-v2-hero__content {
	max-width: var(--home-v2-hero-content-max);
	padding: 8px 0 12px;
}

.home-v2-hero__copy {
	max-width: min(100%, 1220px);
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.home-v2-hero__meta {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.home-v2-hero__sidepanel {
	display: none;
}

.home-v2-hero__title {
	margin: 0;
	font-family: "Bebas Neue", sans-serif;
	font-size: clamp(50px, 4.8vw, 78px);
	line-height: 1;
	letter-spacing: 0.005em;
	color: #1f1d1b;
	max-width: 24ch;
}

.home-v2-hero__title span,
.home-v2-hero__title br {
	display: block;
}

.home-v2-hero__title span {
	white-space: nowrap;
}

.home-v2-hero__title span + span {
	margin-top: 0.12em;
}

.home-v2-hero__lead {
	max-width: none;
	margin: 0;
	font-size: 18px;
	line-height: 1.3;
	white-space: nowrap;
	color: #57514b;
}

.home-v2-hero__materials {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding: 0;
	margin: 4px 0 0;
	list-style: none;
}

.home-v2-hero__material {
	display: inline-flex;
	align-items: center;
	padding: 8px 13px;
	border: 1px solid rgba(103, 91, 83, 0.16);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.72);
	font-size: 12px;
	line-height: 1;
	color: #443e39;
}

.home-v2-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px 20px;
	align-items: center;
	padding-top: 10px;
}

.home-v2-hero--layout-a .home-v2-hero__meta {
	align-self: flex-start;
	padding: 4px 0 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	backdrop-filter: none;
}

.home-v2-hero--layout-b .home-v2-hero__overlay {
	justify-content: space-between;
	gap: 28px;
}

.home-v2-hero--layout-b .home-v2-hero__content {
	max-width: 700px;
}

.home-v2-hero--layout-b .home-v2-hero__meta {
	padding: 0;
}

.home-v2-hero--layout-b .home-v2-hero__sidepanel {
	display: flex;
	flex: 0 0 320px;
	align-self: flex-end;
	flex-direction: column;
	gap: 18px;
	padding: 24px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 28px;
	background: rgba(21, 18, 16, 0.22);
	backdrop-filter: blur(10px);
}

.home-v2-hero__sidepanel-label {
	font-size: 14px;
	line-height: 1.4;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.72);
}

.home-v2-hero__sidepanel-links {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.home-v2-hero__sidepanel-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 16px 18px;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.08);
	font-size: 17px;
	line-height: 1.35;
	font-weight: 500;
	color: #fff;
}

.home-v2-hero__sidepanel-link::after {
	content: "";
	width: 28px;
	height: 28px;
	flex: 0 0 28px;
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: 50%;
	background:
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 14 14' fill='none'%3E%3Cpath d='M3 7H11' stroke='white' stroke-width='1.4'/%3E%3Cpath d='M7 3L11 7L7 11' stroke='white' stroke-width='1.4'/%3E%3C/svg%3E")
		center/12px 12px no-repeat;
}

.home-v2-hero__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 276px;
	min-height: 54px;
	padding-left: 28px;
	padding-right: 28px;
	border-radius: 10px;
}

.home-v2-hero__link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 16px;
	line-height: 1.4;
	font-weight: 500;
	color: #382b24;
	transition: color 180ms ease;
}

.home-v2-hero__link::after,
.home-v2-routes__card-link::after {
	content: "";
	width: var(--home-v2-arrow-size);
	height: var(--home-v2-arrow-size);
	border: 1px solid rgba(56, 43, 36, 0.18);
	border-radius: 50%;
	background:
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'%3E%3Cpath d='M3 7H11' stroke='%23382b24' stroke-width='1.4'/%3E%3Cpath d='M7 3L11 7L7 11' stroke='%23382b24' stroke-width='1.4'/%3E%3C/svg%3E")
		center/14px 14px no-repeat;
	transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.home-v2-hero__link:hover,
.home-v2-hero__link:focus,
.home-v2-hero__link:focus-visible,
.home-v2-routes__card-link:hover,
.home-v2-routes__card-link:focus,
.home-v2-routes__card-link:focus-visible {
	color: var(--home-v2-link-hover);
}

.home-v2-hero__link:hover::after,
.home-v2-hero__link:focus::after,
.home-v2-hero__link:focus-visible::after,
.home-v2-routes__card-link:hover::after,
.home-v2-routes__card-link:focus::after,
.home-v2-routes__card-link:focus-visible::after {
	transform: translateX(4px);
	border-color: var(--home-v2-link-hover-border);
	background-color: var(--home-v2-link-hover-bg);
}

.home-v2-hero__link:focus-visible,
.home-v2-hero__link:focus,
.home-v2-routes__card-link:focus-visible,
.home-v2-routes__card-link:focus,
.home-v2-team__footer-btn:focus-visible,
.home-v2-team__footer-btn:focus,
.home-v2-hero__btn:focus-visible {
	outline: none;
	box-shadow: 0 0 0 3px rgba(126, 4, 15, 0.22);
}

.home-v2-hero__btn:focus {
	outline: none;
	box-shadow: 0 0 0 3px rgba(126, 4, 15, 0.22);
}

.home-v2-hero__visual {
	position: relative;
}

.home-v2-hero__frame {
	position: relative;
	min-height: var(--home-v2-hero-frame-height);
	border-radius: 34px;
	overflow: hidden;
	background: #e9e4df;
	box-shadow: 0 28px 80px rgba(41, 29, 20, 0.12);
}

.home-v2-hero__frame::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(24, 21, 18, 0.04) 0%, rgba(24, 21, 18, 0.28) 100%);
	pointer-events: none;
}

.home-v2-hero__image,
.home-v2-hero__video,
.home-v2-hero__video-poster,
.home-v2-hero__image-placeholder {
	display: block;
	width: 100%;
	height: 100%;
	min-height: var(--home-v2-hero-frame-height);
	object-fit: cover;
	object-position: var(--home-v2-hero-media-position);
}

.home-v2-hero__video,
.home-v2-hero__video-poster {
	position: absolute;
	inset: 0;
	transform: var(--home-v2-hero-media-transform);
}

.home-v2-hero__video {
	z-index: 1;
}

.home-v2-hero__video-poster {
	z-index: 0;
	opacity: 0;
	transition: opacity 0.2s ease;
}

.home-v2-hero__frame.is-video-fallback .home-v2-hero__video-poster {
	opacity: 1;
}

.home-v2-hero__frame.is-video-fallback .home-v2-hero__video {
	opacity: 0;
}

.home-v2-hero__image-placeholder {
	background: linear-gradient(180deg, #e6dfd7 0%, #d7cfc5 100%);
}

.home-v2-trust {
	padding: var(--home-v2-group-gap) 0 0;
}

.home-v2-trust__container {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--home-v2-card-gap);
}

.home-v2-trust__item {
	padding: 16px 18px;
	border: 1px solid rgba(115, 102, 92, 0.12);
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 18px 40px rgba(35, 27, 20, 0.08);
}

.home-v2-trust__value {
	margin-bottom: 6px;
	font-size: 31px;
	line-height: 1.08;
	font-weight: 500;
	color: #1f1d1b;
}

.home-v2-trust__label {
	font-size: 14px;
	line-height: 1.45;
	color: #665d56;
}

.home-v2-routes {
	padding-top: var(--home-v2-section-gap);
}

.home-v2-routes__head {
	margin-bottom: var(--home-v2-stack-gap);
}

.home-v2-routes__intro {
	display: flex;
	flex-direction: column;
	gap: var(--home-v2-group-gap);
}

.home-v2-routes__title,
.home-v2-built__title {
	margin: 0;
	font-family: "Bebas Neue", sans-serif;
	font-size: clamp(40px, 4.1vw, 56px);
	line-height: 0.94;
	letter-spacing: 0.01em;
	color: #1f1d1b;
}

.home-v2-routes__lead,
.home-v2-built__lead {
	max-width: 840px;
	margin: 0;
	font-size: 18px;
	line-height: 1.42;
	color: #675f58;
}

.home-v2-routes__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--home-v2-card-gap);
}

.home-v2-routes__card {
	display: flex;
	flex-direction: column;
	min-height: 280px;
	padding: 32px 32px 28px;
	border: 1px solid rgba(115, 102, 92, 0.12);
	border-radius: 28px;
	background: #fff;
	box-shadow: 0 20px 44px rgba(35, 27, 20, 0.06);
}

.home-v2-routes__card-title {
	margin: 0 0 var(--home-v2-group-gap);
	font-family: "Bebas Neue", sans-serif;
	font-size: clamp(34px, 2.4vw, 44px);
	line-height: 0.96;
	letter-spacing: 0.01em;
	color: #1f1d1b;
}

.home-v2-routes__card-text {
	margin: 0;
	font-size: 17px;
	line-height: 1.5;
	color: #5f5751;
}

.home-v2-routes__card-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-top: auto;
	padding-top: var(--home-v2-cta-gap);
	font-size: 18px;
	line-height: 1.4;
	font-weight: 500;
	color: #382b24;
	transition: color 180ms ease;
}

.home-v2-built {
	padding-top: var(--home-v2-section-gap);
	position: relative;
	overflow: hidden;
}

.home-v2-built::before {
	content: attr(data-title);
	position: absolute;
	left: 50%;
	top: 116px;
	transform: translateX(-50%);
	z-index: 0;
	font-family: "Gotham Pro", Arial, sans-serif;
	font-size: clamp(160px, 22vw, 360px);
	line-height: 0.85;
	font-weight: 900;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.92);
	text-shadow: 0 0 2vw rgba(0, 0, 0, 0.05);
	pointer-events: none;
}

.home-v2-built .container {
	position: relative;
	z-index: 1;
}

.home-v2-built__head {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 24px 36px;
	margin-bottom: var(--home-v2-stack-gap);
}

.home-v2-built__intro {
	display: flex;
	flex-direction: column;
	gap: var(--home-v2-group-gap);
}

.home-v2-built__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--home-v2-card-gap);
}

.home-v2-built__map-card,
.home-v2-built__aside {
	border: 1px solid rgba(115, 102, 92, 0.12);
	border-radius: 28px;
	background: #fff;
	box-shadow: 0 24px 50px rgba(35, 27, 20, 0.08);
}

.home-v2-built__map-card {
	display: flex;
	flex-direction: column;
	padding: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
}

.home-v2-built__map-stage {
	position: relative;
	flex: 1 1 auto;
	min-height: 430px;
	margin-inline: -24px;
	border-radius: 0;
	overflow: visible;
	background: transparent;
}

.home-v2-built__map {
	width: 100%;
	height: 100%;
	min-height: 430px;
}

.home-v2-built__map [class*="ground-pane"] {
	filter: grayscale(100%);
}

.home-v2-built__map-stage .ymaps-2-1-79-map-copyrights-promo,
.home-v2-built__map-stage .ymaps-2-1-79-copyright__link[href*="map-constructor"],
.home-v2-built__map-stage .ymaps-2-1-79-controls__toolbar {
	display: none !important;
}

.home-v2-built__map-popup {
	position: absolute;
	left: 10%;
	right: auto;
	bottom: 5%;
	z-index: 5;
	width: 660px;
	max-width: calc(100% - 40px);
	overflow: visible;
}

.home-v2-built__aside {
	padding: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
}

.home-v2-built__cards {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--home-v2-card-gap);
	box-sizing: border-box;
	padding-inline: clamp(16px, 2vw, 40px);
}

.home-v2-built__cards .card-v2 {
	margin-bottom: 0;
	border-radius: 18px;
	box-shadow: 0 12px 26px rgba(26, 26, 26, 0.12);
}

.home-v2-built__cards .card-v2__image img {
	aspect-ratio: 2.05 / 1;
}

.home-v2-built__cards .card-v2__info {
	padding: 12px 16px 13px 12px;
}

.home-v2-built__cards .card-v2__badge {
	display: none;
}

.home-v2-built__cards .card-v2__name {
	line-height: 1.18;
	font-size: 13px;
	margin-bottom: 6px;
}

.home-v2-built__cards .card-v2__params {
	font-size: 11px;
	line-height: 1.25;
	margin-bottom: 5px;
}

.home-v2-built__cards .card-v2__title {
	font-size: 9px;
	letter-spacing: 0.04em;
}

.home-v2-built__footer {
	display: flex;
	justify-content: center;
	padding-top: var(--home-v2-cta-gap);
}

.home-v2-built__footer-btn {
	min-width: 260px;
	min-height: 54px;
	padding-inline: 28px;
	border-radius: 10px;
}

.home-v2-team {
	padding-top: var(--home-v2-section-gap);
}

.home-v2-team__head {
	margin-bottom: var(--home-v2-stack-gap);
}

.home-v2-team__intro {
	display: flex;
	flex-direction: column;
	gap: var(--home-v2-group-gap);
}

.home-v2-team__title {
	margin: 0;
	font-family: "Bebas Neue", sans-serif;
	font-size: clamp(40px, 4.1vw, 56px);
	line-height: 0.94;
	letter-spacing: 0.01em;
	color: #1f1d1b;
}

.home-v2-team__lead {
	max-width: 860px;
	margin: 0;
	font-size: 18px;
	line-height: 1.42;
	color: #675f58;
}

.home-v2-team__card-image {
	display: block;
	width: 100%;
	height: auto;
	max-height: 460px;
	margin-bottom: 20px;
	object-fit: contain;
	align-self: flex-start;
}

.home-v2-team__item {
	align-items: stretch;
}

.home-v2-team__item img,
.home-v2-team .home-v2-team__card-image {
	display: block !important;
	flex: none !important;
	flex-direction: row !important;
	width: 100% !important;
	height: auto !important;
	max-width: 100%;
	max-height: 460px !important;
	aspect-ratio: auto;
	min-height: 0 !important;
}

.home-v2-team__card-name {
	margin: 0;
	font-family: "Bebas Neue", sans-serif;
	letter-spacing: 0.01em;
	color: #1f1d1b;
}

.home-v2-team__card-role {
	color: #7e040f;
}

.home-v2-team__grid {
	column-gap: var(--home-v2-card-gap);
	row-gap: 24px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-v2-team__card-name {
	font-size: 18px;
}

.home-v2-team__card-role {
	font-size: 14px;
	line-height: 1.5;
	font-weight: 400;
	color: var(--color-text-muted);
}

.home-v2-team__footer {
	display: flex;
	justify-content: center;
	padding-top: var(--home-v2-cta-gap);
}

.home-v2-team__footer-btn {
	min-width: 240px;
	min-height: 54px;
	padding-inline: 28px;
	border-radius: 10px;
}

.home-v2-projects {
	padding-top: var(--home-v2-section-gap);
}

.home-v2-projects__head {
	margin-bottom: var(--home-v2-stack-gap);
}

.home-v2-projects__intro {
	display: flex;
	flex-direction: column;
	gap: var(--home-v2-group-gap);
}

.home-v2-projects__title {
	margin: 0;
	font-family: "Bebas Neue", sans-serif;
	font-size: clamp(40px, 4.1vw, 56px);
	line-height: 0.94;
	letter-spacing: 0.01em;
	color: #1f1d1b;
}

.home-v2-projects__lead {
	max-width: 860px;
	margin: 0;
	font-size: 18px;
	line-height: 1.42;
	color: #675f58;
}

.home-v2-projects__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: var(--home-v2-card-gap);
}

.home-v2-projects .card-v2 {
	margin-bottom: 0;
	border-radius: 18px;
	box-shadow: 0 12px 26px rgba(26, 26, 26, 0.12);
}

.home-v2-projects .card-v2__image img {
	aspect-ratio: 1.14 / 1;
}

.home-v2-projects .card-v2__info {
	padding: 14px 16px 15px;
}

.home-v2-projects .card-v2__price {
	font-size: 18px;
	line-height: 1.16;
	font-weight: 700;
	margin-bottom: 6px;
	letter-spacing: 0;
	white-space: nowrap;
}

.home-v2-projects .card-v2__params {
	font-size: 13px;
	line-height: 1.25;
	margin-bottom: 6px;
}

.home-v2-projects .card-v2__title {
	font-size: 10.5px;
	line-height: 1.25;
	color: rgba(255, 255, 255, 0.46);
}

.home-v2-projects__footer {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px 22px;
	padding-top: var(--home-v2-cta-gap);
	flex-wrap: wrap;
}

.home-v2-projects__offer {
	display: grid;
	grid-template-columns: minmax(160px, auto) minmax(0, 1fr);
	align-items: center;
	gap: 14px 18px;
	max-width: 860px;
	margin: var(--home-v2-cta-gap) auto 0;
	padding: 18px 24px;
	border: 1px solid rgba(126, 4, 15, 0.18);
	border-left: 4px solid var(--color-primary);
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 18px 34px rgba(35, 27, 20, 0.06);
}

.home-v2-projects__offer-title {
	font-size: 18px;
	line-height: 1.1;
	font-weight: 700;
	color: var(--color-primary);
}

.home-v2-projects__offer-text {
	margin: 0;
	font-size: 16px;
	line-height: 1.45;
	color: #5f5751;
}

.home-v2-projects__footer-btn,
.home-v2-projects__aside-btn {
	min-width: 260px;
	min-height: 54px;
	padding-inline: 28px;
	border-radius: 10px;
}

.home-v2-projects__footer-link,
.home-v2-projects__collection-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 16px;
	line-height: 1.4;
	font-weight: 500;
	color: #382b24;
	transition: color 180ms ease;
}

.home-v2-projects__footer-link::after,
.home-v2-projects__collection-link::after {
	content: "";
	width: var(--home-v2-arrow-size);
	height: var(--home-v2-arrow-size);
	border: 1px solid rgba(56, 43, 36, 0.18);
	border-radius: 50%;
	background:
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'%3E%3Cpath d='M3 7H11' stroke='%23382b24' stroke-width='1.4'/%3E%3Cpath d='M7 3L11 7L7 11' stroke='%23382b24' stroke-width='1.4'/%3E%3C/svg%3E")
		center/14px 14px no-repeat;
	transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.home-v2-projects__footer-link:hover,
.home-v2-projects__footer-link:focus,
.home-v2-projects__footer-link:focus-visible,
.home-v2-projects__collection-link:hover,
.home-v2-projects__collection-link:focus,
.home-v2-projects__collection-link:focus-visible {
	color: var(--home-v2-link-hover);
	outline: none;
}

.home-v2-projects__footer-link:hover::after,
.home-v2-projects__footer-link:focus::after,
.home-v2-projects__footer-link:focus-visible::after,
.home-v2-projects__collection-link:hover::after,
.home-v2-projects__collection-link:focus::after,
.home-v2-projects__collection-link:focus-visible::after {
	transform: translateX(4px);
	border-color: var(--home-v2-link-hover-border);
	background-color: var(--home-v2-link-hover-bg);
}

.home-v2-terms {
	padding-top: var(--home-v2-section-gap);
}

.home-v2-terms__head {
	display: flex;
	flex-direction: column;
	gap: var(--home-v2-group-gap);
	margin-bottom: var(--home-v2-stack-gap);
}

.home-v2-terms--grid .home-v2-terms__head {
	margin-bottom: clamp(24px, 2vw, 30px);
}

.home-v2-terms__title {
	margin: 0;
	font-family: "Bebas Neue", sans-serif;
	font-size: clamp(40px, 4.1vw, 56px);
	line-height: 0.94;
	letter-spacing: 0.01em;
	color: #1f1d1b;
}

.home-v2-terms__lead {
	max-width: 920px;
	margin: 0;
	font-size: 19px;
	line-height: 1.4;
	color: #675f58;
}

.home-v2-terms__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: var(--home-v2-card-gap);
}

.home-v2-terms--grid .home-v2-terms__grid {
	grid-template-columns: repeat(12, minmax(0, 1fr));
	gap: 16px;
}

.home-v2-terms__card {
	display: flex;
	flex-direction: column;
	gap: 10px;
	min-height: 180px;
	padding: 24px 22px 22px;
	border: 1px solid rgba(115, 102, 92, 0.12);
	border-radius: 22px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(252, 251, 249, 0.98) 100%);
	box-shadow: 0 18px 38px rgba(35, 27, 20, 0.06);
}

.home-v2-terms--grid .home-v2-terms__card {
	display: flex;
	flex-direction: column;
	grid-column: span 3;
	min-height: 150px;
	padding: 22px 22px 24px;
	gap: 14px;
	border-radius: 26px;
	border-color: rgba(115, 102, 92, 0.14);
	border-left: 4px solid var(--color-primary);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(252, 251, 249, 0.98) 100%);
	box-shadow: 0 18px 34px rgba(35, 27, 20, 0.05);
}

.home-v2-terms--grid .home-v2-terms__card--key {
	grid-column: span 4;
	min-height: clamp(168px, 10vw, 210px);
	padding: 28px 28px 30px;
	border-left-width: 5px;
}

.home-v2-terms__card-title,
.home-v2-terms__row-title {
	margin: 0;
	font-size: 20px;
	line-height: 1.14;
	font-weight: 600;
	color: #1f1d1b;
}

.home-v2-terms--grid .home-v2-terms__card-title {
	font-size: 23px;
	line-height: 0.98;
	letter-spacing: 0.01em;
}

.home-v2-terms--grid .home-v2-terms__card--key .home-v2-terms__card-title {
	font-size: 29px;
	line-height: 0.96;
}

.home-v2-terms__card-text,
.home-v2-terms__row-text {
	margin: 0;
	font-size: 15px;
	line-height: 1.52;
	color: #675f58;
}

.home-v2-terms--grid .home-v2-terms__card-text {
	font-size: 16px;
	line-height: 1.44;
	max-width: none;
}

.home-v2-terms--grid .home-v2-terms__card--key .home-v2-terms__card-text {
	font-size: 18px;
	line-height: 1.42;
	max-width: 34ch;
}

.home-v2-process {
	padding-top: var(--home-v2-section-gap);
}

.home-v2-process__head {
	display: flex;
	flex-direction: column;
	gap: var(--home-v2-group-gap);
	margin-bottom: 0;
	max-width: none;
}

.home-v2-process__title {
	margin: 0;
	font-family: "Bebas Neue", sans-serif;
	font-size: clamp(40px, 4.1vw, 56px);
	line-height: 0.94;
	letter-spacing: 0.01em;
	color: #1f1d1b;
}

.home-v2-process__lead {
	max-width: 920px;
	margin: 0;
	font-size: 19px;
	line-height: 1.4;
	color: #675f58;
}

.home-v2-process__toggle {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.home-v2-process__interactive {
	position: relative;
}

.home-v2-process__layout {
	display: grid;
	grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
	gap: 20px;
	align-items: stretch;
}

.home-v2-process__left {
	display: flex;
	flex-direction: column;
	gap: clamp(24px, 2vw, 30px);
	min-height: 584px;
}

.home-v2-process__detail-stack {
	position: relative;
	flex: 1 1 auto;
	min-height: 424px;
	margin-top: 0;
}

.home-v2-process__detail {
	position: absolute;
	inset: 0;
	padding: 28px 28px 22px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	border-radius: 28px;
	border: 1px solid rgba(115, 102, 92, 0.12);
	background: #fff;
	box-shadow: 0 18px 38px rgba(35, 27, 20, 0.06);
	color: #1f1d1b;
	opacity: 0;
	pointer-events: none;
	transform: translateY(12px);
	transition: opacity 0.22s ease, transform 0.22s ease;
}

.home-v2-process__detail-step {
	font-size: 16px;
	line-height: 1.2;
	font-weight: 600;
	letter-spacing: 0.01em;
	color: var(--color-primary);
}

.home-v2-process__detail-title {
	margin: 0;
	font-family: "Bebas Neue", sans-serif;
	font-size: clamp(42px, 3.8vw, 56px);
	line-height: 0.98;
	letter-spacing: 0.01em;
	color: #1f1d1b;
}

.home-v2-process__detail-text {
	margin: 0;
	max-width: none;
	font-size: 18px;
	line-height: 1.46;
	color: #5f5751;
}

.home-v2-process__detail-footer {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	margin-top: auto;
	padding-top: 10px;
}

.home-v2-process__detail-nav {
	display: flex;
	align-items: center;
	gap: 10px;
}

.home-v2-process__detail-arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	padding: 0;
	border: 1px solid rgba(126, 4, 15, 0.18);
	border-radius: 50%;
	background: transparent;
	color: var(--color-primary);
	font: inherit;
	cursor: pointer;
	transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.home-v2-process__detail-arrow:hover,
.home-v2-process__detail-arrow:focus-visible {
	background: rgba(126, 4, 15, 0.06);
	border-color: rgba(126, 4, 15, 0.28);
}

.home-v2-process__detail-arrow.is-disabled {
	opacity: 0.4;
	pointer-events: none;
}

.home-v2-process__detail-arrow span {
	font-size: 28px;
	line-height: 1;
	transform: translateY(-1px);
}

.home-v2-process__map {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	min-height: 584px;
	padding: 34px 34px 26px;
	border-radius: 28px;
	background: #fff;
	border: 1px solid rgba(31, 29, 27, 0.08);
	box-shadow: 0 18px 38px rgba(35, 27, 20, 0.06);
	overflow: hidden;
	margin-top: 0;
}

.home-v2-process__map-shell {
	position: relative;
	width: calc(100% - 24px);
	aspect-ratio: 704 / 376;
	margin: auto;
	flex: 0 0 auto;
}

.home-v2-process__map-lines {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.home-v2-process__map-lines path {
	fill: none;
	stroke: rgba(82, 72, 63, 0.34);
	stroke-width: 1.5;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.home-v2-process__map-marker {
	border-radius: 50%;
	fill: #fff;
	stroke: var(--color-primary);
	stroke-width: 3.5;
	opacity: 0;
	filter: none;
	transform-origin: center;
	transition: opacity 0.18s ease;
}

.home-v2-process__map.is-animated .home-v2-process__map-marker {
	opacity: 1;
}

.home-v2-process__map-layer {
	position: absolute;
	inset: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
}

.home-v2-process__node {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 25.2%;
	min-height: 14.9%;
	padding: 10px 16px;
	border: 2px solid rgba(255, 255, 255, 0.14);
	border-radius: 999px;
	background: var(--color-primary);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
	text-align: center;
	cursor: default;
	pointer-events: none;
	transform: translate(-50%, -50%);
	transition: none;
}

.home-v2-process__node--project-missing {
	top: 7.98%;
	left: 11.83%;
	width: 22.8%;
}

.home-v2-process__node--project-approved {
	top: 7.98%;
	left: 70.09%;
	width: 23.7%;
}

.home-v2-process__node--estimate {
	top: 35.11%;
	left: 47.38%;
	width: 24.2%;
}

.home-v2-process__node--site-visit {
	top: 62.24%;
	left: 39.38%;
	width: 29.8%;
}

.home-v2-process__node--approval {
	top: 89.36%;
	left: 75.48%;
	width: 24.8%;
}

.home-v2-process__node--contract {
	top: 89.36%;
	left: 11.83%;
	width: 22.8%;
}

.home-v2-process__node--mortgage {
	top: 101.6%;
	left: 43.65%;
	z-index: 2;
	width: 18%;
	min-height: 0;
	padding: 8px 12px;
	border: 1px dashed rgba(126, 4, 15, 0.28);
	border-radius: 999px;
	background: rgba(255, 251, 251, 0.96);
	box-shadow: none;
	text-align: center;
	pointer-events: none;
}

.home-v2-process__node--mortgage::before {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 100%;
	width: 1px;
	height: 18px;
	margin-left: -0.5px;
	border-left: 1px dashed rgba(126, 4, 15, 0.24);
}

.home-v2-process__node span {
	display: block;
	font-size: 14px;
	line-height: 1.18;
	font-weight: 600;
	color: #fff;
}

.home-v2-process__node--mortgage span {
	font-size: 10.5px;
	line-height: 1.1;
	font-weight: 700;
	color: rgba(126, 4, 15, 0.92);
}

.home-v2-process__map-caption {
	display: none;
}

.home-v2-process__actions {
	display: flex;
	justify-content: center;
	margin-top: 24px;
}

.home-v2-process__action-btn {
	min-width: 0;
	min-height: 58px;
	border-radius: 999px;
	padding-right: clamp(28px, 4vw, 52px);
	padding-left: clamp(28px, 4vw, 52px);
}

.home-v2-editorial {
	padding-top: var(--home-v2-section-gap);
}

.home-v2-editorial__head {
	display: flex;
	flex-direction: column;
	gap: var(--home-v2-group-gap);
	margin-bottom: var(--home-v2-stack-gap);
}

.home-v2-editorial__title,
.home-v2-final-cta__title {
	margin: 0;
	font-family: "Bebas Neue", sans-serif;
	font-size: clamp(40px, 4.1vw, 56px);
	line-height: 0.94;
	letter-spacing: 0.01em;
}

.home-v2-editorial__title {
	color: #1f1d1b;
}

.home-v2-editorial__lead {
	max-width: 860px;
	margin: 0;
	font-size: 18px;
	line-height: 1.42;
	color: #675f58;
}

.home-v2-editorial__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: var(--home-v2-card-gap);
}

.home-v2-editorial__group {
	display: flex;
	flex-direction: column;
	gap: 18px;
	padding: 24px;
	border: 1px solid rgba(115, 102, 92, 0.12);
	border-radius: 28px;
	background: #fff;
	box-shadow: 0 18px 38px rgba(35, 27, 20, 0.06);
}

.home-v2-editorial__group-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 18px;
}

.home-v2-editorial__group-title {
	margin: 0 0 8px;
	font-family: "Bebas Neue", sans-serif;
	font-size: 32px;
	line-height: 0.98;
	letter-spacing: 0.01em;
	color: #1f1d1b;
}

.home-v2-editorial__group-text {
	margin: 0;
	max-width: 440px;
	font-size: 15px;
	line-height: 1.45;
	color: #675f58;
}

.home-v2-editorial__group-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	min-height: 42px;
	padding: 0 16px;
	border: 1px solid rgba(56, 43, 36, 0.16);
	border-radius: 999px;
	font-size: 14px;
	line-height: 1.2;
	font-weight: 500;
	color: #382b24;
	transition: border-color 180ms ease, color 180ms ease, background-color 180ms ease;
}

.home-v2-editorial__group-link:hover,
.home-v2-editorial__group-link:focus,
.home-v2-editorial__group-link:focus-visible {
	border-color: var(--home-v2-link-hover-border);
	background: var(--home-v2-link-hover-bg);
	color: var(--home-v2-link-hover);
	outline: none;
}

.home-v2-editorial__list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
}

.home-v2-editorial__card {
	display: grid;
	grid-template-columns: 152px minmax(0, 1fr);
	min-height: 100%;
	overflow: hidden;
	border-radius: 18px;
	background: #fff;
	border: 1px solid rgba(115, 102, 92, 0.12);
	color: #1f1d1b;
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.home-v2-editorial__card:hover,
.home-v2-editorial__card:focus,
.home-v2-editorial__card:focus-visible {
	border-color: rgba(126, 4, 15, 0.18);
	box-shadow: 0 12px 24px rgba(35, 27, 20, 0.06);
	transform: translateY(-2px);
	outline: none;
}

.home-v2-editorial__card-media {
	position: relative;
	overflow: hidden;
	min-height: 124px;
	background: #ede8e3;
}

.home-v2-editorial__card-image {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 124px;
	object-fit: cover;
	transition: transform 220ms ease;
}

.home-v2-editorial__card:hover .home-v2-editorial__card-image,
.home-v2-editorial__card:focus .home-v2-editorial__card-image,
.home-v2-editorial__card:focus-visible .home-v2-editorial__card-image {
	transform: scale(1.035);
}

.home-v2-editorial__card--no-image {
	grid-template-columns: 1fr;
}

.home-v2-editorial__card-body {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 18px 20px;
}

.home-v2-editorial__card-title {
	margin: 0;
	font-size: 17px;
	line-height: 1.2;
	font-weight: 700;
	color: #1f1d1b;
}

.home-v2-editorial__card-excerpt {
	margin: 0;
	font-size: 14px;
	line-height: 1.45;
	color: #675f58;
}

.home-v2-final-cta {
	margin-top: var(--home-v2-section-gap);
	padding-top: var(--home-v2-section-gap);
	padding-bottom: var(--home-v2-section-gap);
	background: var(--color-primary);
	color: #fff;
}

.home-v2-footer {
	margin-top: 0;
	border-top: 1px solid rgba(255, 255, 255, 0.18);
	padding: 0;
	background: var(--color-primary);
	color: #fff;
	text-align: left;
}

.home-v2-footer__container {
	display: block;
	width: min(100%, var(--home-v2-wide-max));
	margin-inline: auto;
	padding: clamp(54px, 5.8vw, 88px) 26px 28px;
}

.home-v2-footer__top {
	display: grid;
	grid-template-columns: minmax(280px, 0.9fr) minmax(0, 2.1fr);
	gap: clamp(48px, 5vw, 82px);
	align-items: start;
	padding-bottom: clamp(40px, 4.6vw, 68px);
}

.home-v2-footer__brand {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 22px;
	max-width: 390px;
}

.home-v2-footer .home-v2-footer__logo {
	display: block;
	width: 156px;
	height: 52px;
	margin: 0;
	background-image: url(../images/logo-white.svg);
	background-repeat: no-repeat;
	background-position: 0 50%;
	background-size: contain;
}

.home-v2-footer__text {
	margin: 0;
	font-size: 18px;
	line-height: 1.45;
	color: rgba(255, 255, 255, 0.82);
}

.home-v2-footer__contacts {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 14px;
	width: 100%;
}

.home-v2-footer__phone {
	display: inline-flex;
	align-items: center;
	min-height: 48px;
	padding: 0;
	color: #fff;
	font-size: 18px;
	line-height: 1.2;
	font-weight: 700;
	text-decoration: none;
}

.home-v2-footer__phone .phone-reveal__display-base,
.home-v2-footer__phone .phone-reveal__display-text,
.home-v2-footer__phone .phone-reveal__display {
	color: #fff;
}

.home-v2-footer__phone .phone-reveal__display-hidden,
.home-v2-footer__phone .phone-reveal__action {
	color: rgba(255, 255, 255, 0.68);
}

.home-v2-footer__phone .phone-reveal__display-hidden::before {
	background: linear-gradient(90deg, rgba(126, 4, 15, 0) 0%, rgba(126, 4, 15, 0.22) 42%, var(--color-primary) 100%);
}

.home-v2-footer__cta {
	min-width: min(100%, 260px);
	min-height: 50px;
	padding-inline: 22px;
	border-color: #fff;
	background: #fff;
	color: var(--color-primary);
}

.home-v2-footer__cta:hover {
	border-color: rgba(255, 255, 255, 0.86);
	background: rgba(255, 255, 255, 0.92);
	color: var(--color-primary);
}

.home-v2-footer__nav {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 36px clamp(26px, 3vw, 52px);
}

.home-v2-footer__group {
	min-width: 0;
}

.home-v2-footer__group[open] {
	display: block;
}

.home-v2-footer__group-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin: 0 0 18px;
	font-family: "Bebas Neue", "BebasNeue", Impact, sans-serif;
	font-size: 28px;
	line-height: 1;
	font-weight: 400;
	color: #fff;
	list-style: none;
	cursor: default;
}

.home-v2-footer__group-title::-webkit-details-marker {
	display: none;
}

.home-v2-footer__group-icon {
	display: none;
}

.home-v2-footer__links {
	display: flex;
	flex-direction: column;
	gap: 2px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.home-v2-footer__links a {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	color: rgba(255, 255, 255, 0.74);
	font-size: 15px;
	line-height: 1.35;
	text-decoration: none;
	transition: color 180ms ease, opacity 180ms ease;
}

.home-v2-footer__links a:hover {
	color: #fff;
}

.home-v2-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.home-v2-footer__legal-wrap {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px 28px;
	min-width: 0;
	color: rgba(255, 255, 255, 0.72);
}

.home-v2-footer .footer__year,
.home-v2-footer .footer__logo,
.home-v2-footer .footer__socials {
	order: initial;
	margin: 0;
}

.home-v2-footer .footer__year {
	font-size: 13px;
	line-height: 1.4;
}

.home-v2-footer .footer__legal {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 10px 20px;
	font-size: 13px;
	line-height: 1.4;
}

.home-v2-footer .footer__legal a {
	color: rgba(255, 255, 255, 0.72);
	text-decoration: none;
}

.home-v2-footer .footer__legal a:hover {
	color: #fff;
}

.home-v2-final-cta__card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: clamp(28px, 3.4vw, 44px);
	min-height: min(520px, calc(100vh - 180px));
	padding: clamp(44px, 5.2vw, 76px) 0;
	background: transparent;
	color: #fff;
	text-align: center;
}

.home-v2-final-cta__content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 18px;
	max-width: 960px;
}

.home-v2-final-cta__eyebrow {
	font-size: 14px;
	line-height: 1.2;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.86);
}

.home-v2-final-cta__title {
	max-width: 920px;
	font-size: clamp(46px, 5vw, 76px);
	line-height: 0.96;
	color: #fff;
}

.home-v2-final-cta__text {
	max-width: 760px;
	margin: 0;
	font-size: 19px;
	line-height: 1.42;
	color: rgba(255, 255, 255, 0.92);
}

.home-v2-final-cta__actions {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(18px, 2.6vw, 34px);
	width: min(100%, 480px);
}

.home-v2-final-cta__btn {
	width: 100%;
	min-height: 58px;
	padding-right: 34px;
	padding-left: 34px;
	border-radius: 999px;
	border-color: #fff;
	background: #fff;
	color: var(--color-primary);
}

.home-v2-final-cta__btn:hover,
.home-v2-final-cta__btn:focus,
.home-v2-final-cta__btn:focus-visible {
	border-color: #fff;
	background: rgba(255, 255, 255, 0.9);
	color: var(--color-primary);
	outline: none;
}

#home-v2-process-step-1:checked ~ .home-v2-process__layout .home-v2-process__detail--project-missing,
#home-v2-process-step-2:checked ~ .home-v2-process__layout .home-v2-process__detail--project-approved,
#home-v2-process-step-3:checked ~ .home-v2-process__layout .home-v2-process__detail--estimate,
#home-v2-process-step-4:checked ~ .home-v2-process__layout .home-v2-process__detail--site-visit,
#home-v2-process-step-5:checked ~ .home-v2-process__layout .home-v2-process__detail--approval,
#home-v2-process-step-6:checked ~ .home-v2-process__layout .home-v2-process__detail--contract {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.home-v2-order-form {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.home-v2-order-form__row {
	display: flex;
	flex-direction: column;
}

.home-v2-order-form__input {
	height: 50px;
	border: 1px solid #e0e0e0;
	background: #fff;
	padding-inline: 18px;
}

.home-v2-order-form__contact-method {
	gap: 10px;
}

.home-v2-order-form__contact-title {
	font-size: 14px;
	line-height: 1.4;
	color: #5f5751;
}

.home-v2-order-form__contact-options {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.home-v2-order-form__submit {
	margin-top: 4px;
}

.home-v2-order-form__error {
	margin-bottom: 10px;
	color: #a90707;
}

.home-v2-order-form__caption {
	margin-bottom: 8px;
}

.home-v2-order-form__description {
	color: #5f5751;
	line-height: 1.45;
}

#popupOrderHomeV2.is-success .popup__container {
	max-width: 560px;
	padding: 44px 28px 34px;
}

#popupOrderHomeV2.is-success .popup__header {
	display: none;
}

#popupOrderHomeV2.is-success .popup__content {
	display: flex;
	align-items: center;
	min-height: 170px;
}

.home-v2-order-success {
	max-width: 430px;
}

.home-v2-order-success__caption {
	margin-bottom: 16px;
	font-size: clamp(32px, 7vw, 48px);
	line-height: 0.98;
}

.home-v2-order-success__description {
	color: #5f5751;
	font-size: clamp(18px, 3vw, 22px);
	line-height: 1.42;
}

@media (max-width: 74em) {
	.home-v2-page {
		--home-v2-header-offset: 82px;
		--home-v2-cta-gap: 24px;
	}

	.home-v2-hero__overlay {
		padding-top: clamp(82px, 8vw, 104px);
	}

	.home-v2-hero--media .home-v2-hero__content {
		gap: 24px;
	}

	.home-v2-hero__copy {
		width: 100%;
		gap: 16px;
	}

	.home-v2-hero__title {
		font-size: clamp(46px, 4.2vw, 68px);
		max-width: 24ch;
	}

	.home-v2-hero__lead {
		font-size: 17px;
	}

	.home-v2-built__map-stage,
	.home-v2-built__map {
		min-height: 340px;
	}

	.home-v2-built__cards {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.home-v2-team__grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.home-v2-terms__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.home-v2-terms--grid .home-v2-terms__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.home-v2-terms--grid .home-v2-terms__card,
	.home-v2-terms--grid .home-v2-terms__card--key {
		grid-column: auto;
		min-height: 0;
	}

	.home-v2-process__layout {
		grid-template-columns: 1fr;
	}

	.home-v2-editorial__grid,
	.home-v2-final-cta__card {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 62em) {
	.home-v2-page {
		--home-v2-section-gap: 56px;
		--home-v2-stack-gap: 22px;
		--home-v2-group-gap: 14px;
		--home-v2-cta-gap: 24px;
		--home-v2-header-offset: 76px;
		--home-v2-hero-media-transform: scale(1.12) translateY(3%);
	}

	.home-v2-header {
		position: absolute;
		inset: 0 0 auto 0;
		padding-top: 0;
		background: rgba(255, 255, 255, 0.1);
		backdrop-filter: blur(10px);
		-webkit-backdrop-filter: blur(10px);
	}

	.home-v2-header::before {
		display: block;
	}

	.home-v2-header__container {
		min-height: 66px;
		padding: 14px 16px 10px;
	}

	.home-v2-header__panel {
		display: none;
	}

	.home-v2-header__logo {
		width: 112px;
		height: 42px;
	}

	.home-v2-header__burger {
		display: inline-flex;
		margin-left: auto;
		align-items: center;
		justify-content: center;
		width: 40px;
		height: 40px;
		border: 1px solid rgba(255, 255, 255, 0.22);
		border-radius: 50%;
		background: rgba(255, 255, 255, 0.08);
	}

	.home-v2-header__burger:hover,
	.home-v2-header__burger:focus-visible {
		border-color: var(--home-v2-header-hover-border);
		background: var(--home-v2-header-hover-bg);
	}

	.home-v2-header__search {
		margin-left: auto;
		color: #fff;
		fill: currentColor;
		stroke: currentColor;
		border-color: rgba(255, 255, 255, 0.24);
	}

	.home-v2-hero {
		margin-top: calc(var(--home-v2-header-offset) * -1);
		padding-top: var(--home-v2-header-offset);
	}

	.home-v2-hero__container.container {
		padding-inline: 16px;
	}

	.home-v2-hero__media-stage .home-v2-hero__frame,
	.home-v2-hero__frame,
	.home-v2-hero__image,
	.home-v2-hero__video,
	.home-v2-hero__video-poster,
	.home-v2-hero__image-placeholder {
		min-height: 520px;
		border-radius: 28px;
	}

	.home-v2-hero__media-stage .home-v2-hero__frame {
		border-radius: 0;
	}

	.home-v2-hero__overlay {
		padding: 32px 24px 28px;
		background:
			linear-gradient(180deg, rgba(18, 16, 14, 0.36) 0%, rgba(18, 16, 14, 0.2) 28%, rgba(18, 16, 14, 0.54) 100%),
			linear-gradient(90deg, rgba(18, 16, 14, 0.46) 0%, rgba(18, 16, 14, 0.12) 56%, rgba(18, 16, 14, 0) 100%);
	}

	.home-v2-hero--media .home-v2-hero__content,
	.home-v2-hero__content {
		max-width: 100%;
		justify-content: flex-end;
		gap: 24px;
	}

	.home-v2-hero__title {
		font-size: clamp(38px, 5vw, 52px);
		max-width: 20ch;
	}

	.home-v2-hero__title span {
		white-space: normal;
	}

	.home-v2-hero__lead {
		max-width: 28ch;
		font-size: 16px;
		line-height: 1.34;
		white-space: normal;
	}

	.home-v2-hero__actions {
		padding-top: 6px;
	}

	.home-v2-trust__container,
	.home-v2-routes__grid {
		grid-template-columns: 1fr;
	}

	.home-v2-routes__card {
		min-height: 0;
		padding: 24px 22px;
	}

	.home-v2-built__head {
		align-items: flex-start;
		flex-direction: column;
	}

	.home-v2-built__cards {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.home-v2-team__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.home-v2-projects__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.home-v2-terms__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.home-v2-terms--grid .home-v2-terms__card {
		grid-column: auto;
		min-height: 0;
		padding: 22px 20px 20px;
		gap: 12px;
	}

	.home-v2-terms--grid .home-v2-terms__card--key {
		padding: 24px 22px 22px;
	}

	.home-v2-terms--grid .home-v2-terms__card-title {
		font-size: 31px;
	}

	.home-v2-terms--grid .home-v2-terms__card--key .home-v2-terms__card-title {
		font-size: 25px;
	}

	.home-v2-terms--grid .home-v2-terms__card-text {
		font-size: 16px;
		max-width: none;
	}

	.home-v2-terms--grid .home-v2-terms__card--key .home-v2-terms__card-text {
		font-size: 16px;
		max-width: none;
	}

	.home-v2-terms--grid .home-v2-terms__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.home-v2-process__layout {
		grid-template-columns: 1fr;
	}

	.home-v2-process__head {
		max-width: none;
	}

	.home-v2-process__left {
		min-height: 0;
	}

	.home-v2-process__detail-stack {
		min-height: 500px;
		margin-top: 0;
	}

	.home-v2-process__detail,
	.home-v2-process__map {
		padding: 24px;
	}

	.home-v2-process__map {
		margin-top: 0;
		min-height: 500px;
	}

	.home-v2-process__map-shell {
		width: 100%;
		margin-top: 32px;
	}

	.home-v2-process__detail-title {
		font-size: 40px;
	}

	.home-v2-process__detail-text {
		font-size: 18px;
	}

}

@media (max-width: 48em) {
	.home-v2-page {
		--home-v2-section-gap: 40px;
		--home-v2-stack-gap: 18px;
		--home-v2-group-gap: 12px;
		--home-v2-cta-gap: 20px;
		--home-v2-hero-media-transform: none;
	}

	.home-v2-hero__media-stage .home-v2-hero__frame,
	.home-v2-hero__frame,
	.home-v2-hero__image,
	.home-v2-hero__video,
	.home-v2-hero__video-poster,
	.home-v2-hero__image-placeholder {
		min-height: 470px;
	}

	.home-v2-hero__media-stage .home-v2-hero__frame {
		border-radius: 0;
	}

	.home-v2-hero__overlay {
		padding: 82px 20px 24px;
	}

	.home-v2-hero__copy {
		gap: 16px;
	}

	.home-v2-hero__title {
		font-size: clamp(30px, 7.6vw, 40px);
		max-width: 100%;
	}

	.home-v2-hero__materials {
		display: flex;
		flex-wrap: nowrap;
		gap: 6px;
	}

	.home-v2-hero__material {
		flex: 0 1 auto;
		padding: 7px 8px;
		font-size: 10px;
		white-space: nowrap;
	}

	.home-v2-hero__lead {
		max-width: 100%;
		font-size: 16px;
		line-height: 1.3;
		white-space: normal;
	}

	.home-v2-hero__actions {
		flex-direction: column;
		flex-wrap: nowrap;
		align-items: stretch;
		gap: 12px;
	}

	.home-v2-hero__btn {
		min-width: 0;
		width: 100%;
		min-height: 50px;
	}

	.home-v2-hero__link {
		width: 100%;
		justify-content: space-between;
		font-size: 16px;
	}

	.home-v2-routes__title,
	.home-v2-built__title,
	.home-v2-team__title {
		font-size: 38px;
	}

	.home-v2-routes__lead,
	.home-v2-built__lead,
	.home-v2-team__lead {
		font-size: 16px;
	}

	.home-v2-built__map-card {
		padding: 18px;
	}

	.home-v2-built__map-stage,
	.home-v2-built__map {
		min-height: 380px;
	}

	.home-v2-built__map-stage {
		margin-inline: -16px;
	}

	.home-v2-built__cards {
		grid-template-columns: 1fr;
	}

	.home-v2-built__map-popup {
		left: 12px;
		right: 12px;
		bottom: 12px;
		width: auto;
		max-width: none;
	}

	.home-v2-built__cards .card-v2__image img {
		aspect-ratio: 1.45 / 1;
	}

	.home-v2-built::before {
		top: 180px;
		font-size: clamp(120px, 34vw, 200px);
	}

	.home-v2-team__grid {
		grid-template-columns: 1fr;
	}

	.home-v2-projects__title {
		font-size: 38px;
	}

	.home-v2-projects__lead {
		font-size: 16px;
	}

	.home-v2-terms__title {
		font-size: 38px;
	}

	.home-v2-terms__lead {
		font-size: 16px;
	}

	.home-v2-process__title {
		font-size: 38px;
	}

	.home-v2-process__lead {
		font-size: 16px;
	}

	.home-v2-projects__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.home-v2-terms--grid .home-v2-terms__grid {
		grid-template-columns: 1fr;
	}

	.home-v2-terms__card {
		min-height: 0;
		padding: 22px 18px 20px;
	}

	.home-v2-terms--grid .home-v2-terms__card {
		padding: 22px 18px 20px;
	}

	.home-v2-terms--grid .home-v2-terms__card--key {
		padding: 24px 18px 22px;
	}

	.home-v2-terms__card-title,
	.home-v2-terms__row-title {
		font-size: 18px;
	}

	.home-v2-terms--grid .home-v2-terms__card-title {
		font-size: 20px;
	}

	.home-v2-terms--grid .home-v2-terms__card--key .home-v2-terms__card-title {
		font-size: 23px;
	}

	.home-v2-terms__card-text,
	.home-v2-terms__row-text {
		font-size: 15px;
	}

	.home-v2-terms--grid .home-v2-terms__card-text {
		font-size: 15px;
		max-width: none;
	}

	.home-v2-terms--grid .home-v2-terms__card--key .home-v2-terms__card-text {
		font-size: 15px;
		max-width: none;
	}

	.home-v2-process__detail,
	.home-v2-process__map {
		padding: 20px 18px;
		border-radius: 24px;
	}

	.home-v2-process__map {
		min-height: 0;
	}

	.home-v2-process__detail-stack {
		min-height: 0;
		margin-top: 0;
	}

	.home-v2-process__left {
		min-height: 0;
	}

	.home-v2-process__detail {
		position: relative;
		display: none;
		padding: 24px 20px 20px;
	}

	#home-v2-process-step-1:checked ~ .home-v2-process__layout .home-v2-process__detail--project-missing,
	#home-v2-process-step-2:checked ~ .home-v2-process__layout .home-v2-process__detail--project-approved,
	#home-v2-process-step-3:checked ~ .home-v2-process__layout .home-v2-process__detail--estimate,
	#home-v2-process-step-4:checked ~ .home-v2-process__layout .home-v2-process__detail--site-visit,
	#home-v2-process-step-5:checked ~ .home-v2-process__layout .home-v2-process__detail--approval,
	#home-v2-process-step-6:checked ~ .home-v2-process__layout .home-v2-process__detail--contract {
		display: flex;
	}

	.home-v2-process__detail-title {
		font-size: 30px;
	}

	.home-v2-process__detail-step {
		font-size: 14px;
	}

	.home-v2-process__map-title {
		font-size: 24px;
	}

	.home-v2-process__detail-text,
	.home-v2-process__map-caption,
	.home-v2-process__map-subtitle {
		font-size: 15px;
	}

	.home-v2-process__map-shell {
		min-height: 0;
		margin: 18px 0 0;
		width: 100%;
	}

	.home-v2-process__map-lines {
		display: block;
	}

	.home-v2-process__map-marker {
		display: block;
		stroke-width: 4.5;
	}

	.home-v2-process__map-layer {
		position: absolute;
		inset: 0;
		display: block;
		min-height: 0;
		padding-left: 0;
	}

	.home-v2-process__map-layer::before {
		content: none;
	}

	.home-v2-process__node {
		position: absolute;
		min-height: 12.8%;
		padding: 6px 8px;
		border-width: 1px;
		border-radius: 999px;
		transform: translate(-50%, -50%);
		text-align: center;
		justify-content: center;
	}

	.home-v2-process__node::before {
		content: none;
	}

	.home-v2-process__node--project-missing {
		width: 25%;
	}

	.home-v2-process__node--project-approved {
		width: 27%;
	}

	.home-v2-process__node--estimate {
		width: 29%;
	}

	.home-v2-process__node--site-visit {
		width: 31%;
	}

	.home-v2-process__node--approval {
		width: 27%;
	}

	.home-v2-process__node--contract {
		width: 23%;
	}

	.home-v2-process__node--mortgage {
		left: 43.65%;
		width: 25%;
		min-height: 10%;
		padding: 5px 7px;
		background: #fff;
		text-align: center;
	}

	.home-v2-process__node--mortgage::before {
		left: 50%;
		top: auto;
		bottom: 100%;
		width: 1px;
		height: 12px;
		margin-top: 0;
		margin-left: -0.5px;
		transform: none;
		border-left: 1px dashed rgba(126, 4, 15, 0.26);
		border-top: 0;
	}

	.home-v2-process__actions {
		justify-content: stretch;
	}

	.home-v2-process__action-btn {
		width: 100%;
	}

	.home-v2-process__node span {
		font-size: 9px;
		line-height: 1.05;
	}

	.home-v2-process__node--mortgage span {
		font-size: 7.5px;
	}

	.home-v2-projects__footer {
		align-items: stretch;
		flex-direction: column;
	}

	.home-v2-projects__footer-btn,
	.home-v2-projects__aside-btn {
		width: 100%;
		min-width: 0;
	}

	.home-v2-projects__footer-link {
		justify-content: space-between;
		width: 100%;
	}

	.home-v2-projects__offer {
		grid-template-columns: 1fr;
		gap: 6px;
		padding: 16px 18px;
	}

	.home-v2-projects__offer-title {
		font-size: 16px;
	}

	.home-v2-projects__offer-text {
		font-size: 14px;
	}

	.home-v2-editorial__title,
	.home-v2-final-cta__title {
		font-size: 38px;
	}

	.home-v2-editorial__lead,
	.home-v2-final-cta__text {
		font-size: 16px;
	}

	.home-v2-editorial__group {
		padding: 20px 18px;
		border-radius: 24px;
	}

	.home-v2-editorial__group-head {
		flex-direction: column;
		align-items: stretch;
	}

	.home-v2-editorial__group-link {
		width: 100%;
		justify-content: space-between;
	}

	.home-v2-editorial__list {
		grid-template-columns: 1fr;
	}

	.home-v2-editorial__card {
		grid-template-columns: 86px minmax(0, 1fr);
		min-height: 0;
	}

	.home-v2-editorial__card-media,
	.home-v2-editorial__card-image {
		min-height: 96px;
	}

	.home-v2-editorial__card-body {
		padding: 16px;
	}

	.home-v2-editorial__card-title {
		font-size: 15px;
	}

	.home-v2-editorial__card-excerpt {
		display: none;
	}

	.home-v2-final-cta__card {
		gap: 24px;
		padding: 26px 20px;
		border-radius: 24px;
	}

	.home-v2-final-cta__actions {
		flex-direction: column;
		align-items: stretch;
		gap: 14px;
		width: 100%;
	}

	.home-v2-final-cta__btn {
		flex: 0 0 auto;
		width: 100%;
	}
}

@media (max-width: 24em) {
	.home-v2-projects__grid {
		grid-template-columns: 1fr;
	}
}

@media (min-width: 100em) {
	.home-v2-page {
		--home-v2-wide-max: 1600px;
		--home-v2-hero-content-max: 1420px;
		--home-v2-section-gap: 84px;
		--home-v2-stack-gap: 32px;
		--home-v2-card-gap: 22px;
	}

	.home-v2-header__container {
		padding-inline: 40px;
	}

	.home-v2-hero__media-stage .home-v2-hero__frame {
		min-height: var(--home-v2-hero-frame-height);
	}

	.home-v2-hero__overlay {
		padding:
			clamp(98px, 7vw, 132px)
			max(40px, calc((100vw - var(--home-v2-wide-max)) / 2 + 48px))
			clamp(28px, 3vw, 40px);
	}

	.home-v2-hero__title {
		font-size: clamp(62px, 4.2vw, 88px);
	}

	.home-v2-hero__lead {
		font-size: 20px;
	}

	.home-v2-built__map-stage,
	.home-v2-built__map {
		min-height: 500px;
	}

	.home-v2-built__cards .card-v2__name {
		font-size: 15px;
	}

	.home-v2-built__cards .card-v2__params {
		font-size: 12px;
	}

	.home-v2-team__card-image {
		max-height: 420px !important;
	}

	.home-v2-projects .card-v2__price {
		font-size: 18px;
	}

	.home-v2-projects .card-v2__params {
		font-size: 13px;
	}
}

/* Mobile QA fixes: keep existing palette, only tighten responsive behavior. */
.home-v2-terms--grid .home-v2-terms__card--compact {
	grid-column: span 4;
	min-height: 0;
	padding: 20px 24px 22px;
}

.home-v2-terms--grid .home-v2-terms__card--medium {
	grid-column: span 6;
	min-height: 0;
	padding: 22px 26px 24px;
}

.home-v2-terms--grid .home-v2-terms__card--wide {
	grid-column: span 6;
	min-height: 0;
	padding: 22px 28px 24px;
}

.home-v2-terms--grid .home-v2-terms__card--wide .home-v2-terms__card-text {
	max-width: 54ch;
}

.home-v2-footer .footer__socials-item {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	margin-right: 0;
	margin-left: 0;
}

.home-v2-footer .footer__socials {
	gap: 4px;
}

@media (max-width: 62em) {
	.home-v2-footer__top {
		grid-template-columns: 1fr;
		gap: 42px;
	}

	.home-v2-footer__brand {
		max-width: 620px;
	}

	.home-v2-footer__nav {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 48em) {
	.home-v2-footer__container {
		padding: 44px 20px 24px;
	}

	.home-v2-footer__top {
		gap: 34px;
		padding-bottom: 34px;
	}

	.home-v2-footer .home-v2-footer__logo {
		width: 136px;
		height: 46px;
	}

	.home-v2-footer__brand {
		gap: 18px;
	}

	.home-v2-footer__text {
		font-size: 16px;
		line-height: 1.45;
	}

	.home-v2-footer__contacts {
		gap: 12px;
	}

	.home-v2-footer__phone {
		min-height: 44px;
		font-size: 17px;
	}

	.home-v2-footer__cta {
		width: 100%;
		min-height: 52px;
	}

	.home-v2-footer__nav {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.home-v2-footer__group {
		padding: 0;
		border-top: 1px solid rgba(255, 255, 255, 0.16);
	}

	.home-v2-footer__group:first-child {
		border-top: 0;
	}

	.home-v2-footer__group-title {
		min-height: 58px;
		margin-bottom: 0;
		font-size: 25px;
		cursor: pointer;
		-webkit-tap-highlight-color: transparent;
	}

	.home-v2-footer__group[open] .home-v2-footer__group-title {
		margin-bottom: 10px;
	}

	.home-v2-footer__group-icon {
		position: relative;
		display: block;
		flex: 0 0 auto;
		width: 28px;
		height: 28px;
		border: 1px solid rgba(255, 255, 255, 0.24);
		border-radius: 50%;
	}

	.home-v2-footer__group-icon::before,
	.home-v2-footer__group-icon::after {
		content: "";
		position: absolute;
		top: 50%;
		left: 50%;
		width: 12px;
		height: 1.5px;
		border-radius: 999px;
		background: rgba(255, 255, 255, 0.86);
		transform: translate(-50%, -50%);
	}

	.home-v2-footer__group-icon::after {
		transform: translate(-50%, -50%) rotate(90deg);
		transition: transform 180ms ease, opacity 180ms ease;
	}

	.home-v2-footer__group[open] .home-v2-footer__group-icon::after {
		opacity: 0;
		transform: translate(-50%, -50%) rotate(0deg);
	}

	.home-v2-footer__links {
		display: grid;
		grid-template-columns: 1fr;
		gap: 0;
		padding-bottom: 18px;
	}

	.home-v2-footer__links a {
		min-height: 40px;
		font-size: 15px;
	}

	.home-v2-footer__bottom {
		flex-direction: column;
		align-items: flex-start;
		gap: 22px;
		padding-top: 24px;
	}

	.home-v2-footer__legal-wrap,
	.home-v2-footer .footer__legal {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}

	.home-v2-footer .footer__socials {
		width: 100%;
		justify-content: flex-start;
		gap: 8px;
	}
}

@media (max-width: 62em) and (min-width: 48.01em) {
	.home-v2-team__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		align-items: start;
	}

	.home-v2-team__item img,
	.home-v2-team .home-v2-team__card-image {
		width: min(100%, 360px) !important;
		margin-inline: auto;
	}
}

@media (max-width: 48em) {
	.home-v2-hero__materials {
		min-width: 0;
		gap: 5px;
	}

	.home-v2-hero__material {
		padding: 6px 7px;
		font-size: 9.5px;
	}

	.home-v2-hero__link,
	.home-v2-projects__footer-link,
	.home-v2-editorial__group-link {
		min-height: 44px;
	}

	.home-v2-terms--grid .home-v2-terms__grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.home-v2-terms--grid .home-v2-terms__card,
	.home-v2-terms--grid .home-v2-terms__card--compact,
	.home-v2-terms--grid .home-v2-terms__card--medium,
	.home-v2-terms--grid .home-v2-terms__card--wide {
		grid-column: auto;
		min-height: 0;
		padding: 20px 18px 18px;
		gap: 10px;
		border-left-width: 4px;
	}

	.home-v2-terms--grid .home-v2-terms__card-title,
	.home-v2-terms--grid .home-v2-terms__card--compact .home-v2-terms__card-title,
	.home-v2-terms--grid .home-v2-terms__card--medium .home-v2-terms__card-title,
	.home-v2-terms--grid .home-v2-terms__card--wide .home-v2-terms__card-title {
		font-size: 19px;
		line-height: 1.02;
	}

	.home-v2-terms--grid .home-v2-terms__card-text,
	.home-v2-terms--grid .home-v2-terms__card--wide .home-v2-terms__card-text {
		max-width: none;
		font-size: 15px;
		line-height: 1.48;
	}

	.home-v2-process__map {
		padding-inline: 14px;
	}

	.home-v2-process__map-shell {
		margin-top: 16px;
	}

	.home-v2-process__node {
		padding: 6px 7px;
	}

	.home-v2-process__node span {
		font-size: 10px;
		line-height: 1.05;
	}

	.home-v2-process__node--mortgage {
		width: 29%;
	}

	.home-v2-process__node--mortgage span {
		font-size: 8px;
	}

	.home-v2-editorial__card-title {
		font-size: 14px;
		line-height: 1.16;
	}
}

@media (max-width: 21.25em) {
	.home-v2-hero__overlay {
		padding-right: 16px;
		padding-left: 16px;
	}

	.home-v2-hero__materials {
		gap: 4px;
	}

	.home-v2-hero__material {
		padding: 5px 6px;
		font-size: 8.8px;
	}

	.home-v2-process__node span {
		font-size: 8.8px;
	}

	.home-v2-process__node--mortgage span {
		font-size: 7.2px;
	}
}

@media (min-width: 46em) and (max-width: 48em) {
	.home-v2-team__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		align-items: start;
	}

	.home-v2-team__item img,
	.home-v2-team .home-v2-team__card-image {
		width: min(100%, 330px) !important;
		margin-inline: auto;
	}
}

.home-v2-team__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.home-v2-team__grid {
	display: grid;
}

/* 2026-05-17 mobile QA fixes */
.home-v2-header__burger-icon {
	display: block;
	position: relative;
	width: 20px;
	height: 14px;
}

.home-v2-header__burger-icon span {
	position: absolute;
	left: 0;
	display: block;
	width: 100%;
	height: 2px;
	border-radius: 2px;
	background: currentColor;
	transition: transform 180ms ease, opacity 180ms ease, top 180ms ease;
}

.home-v2-header__burger-icon span:nth-child(1) {
	top: 0;
}

.home-v2-header__burger-icon span:nth-child(2) {
	top: 6px;
}

.home-v2-header__burger-icon span:nth-child(3) {
	top: 12px;
}

.home-v2-header.is-menu-open .home-v2-header__burger-icon span:nth-child(1) {
	top: 6px;
	transform: rotate(45deg);
}

.home-v2-header.is-menu-open .home-v2-header__burger-icon span:nth-child(2) {
	opacity: 0;
}

.home-v2-header.is-menu-open .home-v2-header__burger-icon span:nth-child(3) {
	top: 6px;
	transform: rotate(-45deg);
}

@media (max-width: 62em) {
	html.home-v2-menu-open {
		overflow: hidden;
	}

	.home-v2-header.is-menu-open {
		z-index: 80;
	}

	.home-v2-header.is-menu-open .home-v2-header__panel {
		position: fixed;
		top: 74px;
		right: 16px;
		left: 16px;
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 18px;
		padding: 22px;
		border: 1px solid rgba(56, 43, 36, 0.12);
		border-radius: 24px;
		background: #fff;
		box-shadow: 0 24px 60px rgba(26, 26, 26, 0.16);
	}

	.home-v2-header.is-menu-open .home-v2-header__nav,
	.home-v2-header.is-menu-open .home-v2-header__meta,
	.home-v2-header.is-menu-open .home-v2-header__menu {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
		gap: 8px;
	}

	.home-v2-header.is-menu-open .home-v2-header__menu a,
	.home-v2-header.is-menu-open .home-v2-header__phone-link,
	.home-v2-header.is-menu-open .home-v2-header__search {
		width: 100%;
		min-height: 44px;
		justify-content: flex-start;
		border-color: rgba(56, 43, 36, 0.12);
		background: rgba(126, 4, 15, 0.04);
		color: #382b24 !important;
		fill: currentColor;
		stroke: currentColor;
	}

	.home-v2-header.is-menu-open .home-v2-header__search {
		width: 44px;
		justify-content: center;
	}
}

.home-v2-projects .card-v2__title {
	font-size: 9.5px;
	line-height: 1.16;
	letter-spacing: 0.08em;
}

.home-v2-projects__footer-link {
	width: auto;
	justify-content: flex-start;
	gap: 12px;
}

.home-v2-projects__footer-link::after {
	flex: 0 0 var(--home-v2-arrow-size);
}

.home-v2-editorial__group-link {
	min-height: 44px;
	padding-inline: 18px;
	border-color: rgba(126, 4, 15, 0.32);
	color: var(--home-v2-link-hover);
	font-weight: 700;
}

@media (max-width: 48em) {
	.home-v2-built__cards .card-v2__image img,
	.home-v2-projects .card-v2__image img {
		image-rendering: auto;
	}

	.home-v2-team__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 26px 14px;
		align-items: start;
	}

	.home-v2-team__item img,
	.home-v2-team .home-v2-team__card-image {
		width: 100% !important;
		max-height: 290px;
		object-fit: contain;
		object-position: center top;
	}

	.home-v2-team__card-name {
		font-size: 13px;
		line-height: 1.1;
	}

	.home-v2-team__card-role {
		font-size: 12px;
		line-height: 1.25;
	}

	.home-v2-projects .card-v2__title {
		font-size: 9px;
		line-height: 1.12;
	}

	.home-v2-projects__footer-link {
		width: auto;
		align-self: flex-start;
		justify-content: flex-start;
	}

	.home-v2-editorial__group-link {
		width: auto;
		align-self: flex-start;
		justify-content: center;
	}

	.home-v2-process__map-shell {
		min-height: clamp(220px, 60vw, 260px);
	}

	.home-v2-process__node {
		min-height: 34px;
		padding: 7px 9px;
	}

	.home-v2-process__node span {
		font-size: clamp(9.8px, 2.8vw, 11px);
		line-height: 1.08;
	}

	.home-v2-process__node--mortgage {
		width: 27%;
		min-height: 30px;
		padding: 5px 7px;
		border-style: dashed;
	}

	.home-v2-process__node--mortgage::before {
		display: block;
		height: 16px;
		border-left-color: rgba(126, 4, 15, 0.42);
		opacity: 1;
	}

	.home-v2-process__node--mortgage span {
		font-size: clamp(7.8px, 2.2vw, 8.8px);
		line-height: 1.02;
	}
}

@media (max-width: 21.25em) {
	.home-v2-team__grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 48em) {
	.home-v2-process__node--mortgage::before {
		bottom: calc(100% + 2px);
		height: 30px;
		border-left-color: rgba(126, 4, 15, 0.52);
		z-index: 1;
	}
}

@media (max-width: 48em) {
	.home-v2-process__node--mortgage::before {
		width: 2px;
		height: 28px;
		border: 0;
		background: repeating-linear-gradient(to bottom, rgba(126, 4, 15, 0.58) 0 3px, transparent 3px 7px);
	}
}

@media (max-width: 48em) {
	.home-v2-process__node--mortgage::before {
		content: "";
	}
}

/* 2026-05-17 mobile UX audit pass */
.home-v2-process__mobile-route {
	display: none;
}

@media (max-width: 62em) {
	.home-v2-header__logo {
		min-height: 44px;
	}

	.home-v2-header__burger {
		width: 44px;
		height: 44px;
	}
}

@media (max-width: 48em) {
	.home-v2-built__cards .card-v2__image img {
		aspect-ratio: 1.34 / 1;
	}

	.home-v2-built__cards .card-v2__info {
		padding: 22px 24px 24px;
	}

	.home-v2-built__cards .card-v2__name {
		font-size: clamp(19px, 5.8vw, 26px);
		line-height: 1.12;
	}

	.home-v2-built__cards .card-v2__params {
		margin-top: 8px;
		font-size: clamp(18px, 5vw, 23px);
	}

	.home-v2-team__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 24px 14px;
	}

	.home-v2-projects__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}

	.home-v2-projects .card-v2__info {
		padding: 12px 12px 13px;
	}

	.home-v2-projects .card-v2__price {
		font-size: clamp(14px, 4vw, 17px);
		line-height: 1.1;
	}

	.home-v2-projects .card-v2__params {
		margin-top: 4px;
		font-size: clamp(11px, 3.1vw, 13px);
		line-height: 1.18;
	}

	.home-v2-projects .card-v2__title {
		margin-top: 4px;
		font-size: clamp(7.5px, 2.35vw, 9px);
		line-height: 1.12;
		letter-spacing: 0.07em;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}

	.home-v2-projects__footer-link {
		width: fit-content;
		max-width: 100%;
		justify-content: flex-start;
		gap: 14px;
	}

	.home-v2-process__map-shell {
		display: none;
	}

	.home-v2-process__map {
		padding: 18px;
	}

	.home-v2-process__mobile-route {
		--home-v2-process-route-axis: 22px;
		position: relative;
		display: grid;
		gap: 10px;
		margin: 0;
		padding: 0;
		list-style: none;
	}

	.home-v2-process__mobile-route::before {
		content: "";
		position: absolute;
		top: 20px;
		bottom: 20px;
		left: calc(var(--home-v2-process-route-axis) - 0.5px);
		width: 1px;
		background: rgba(82, 72, 63, 0.28);
	}

	.home-v2-process__mobile-route-item {
		position: relative;
		display: grid;
		grid-template-columns: 44px minmax(0, 1fr);
		align-items: center;
		gap: 12px;
		min-height: 52px;
		padding: 7px 12px 7px 0;
	}

	.home-v2-process__mobile-route-index {
		position: relative;
		z-index: 1;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 44px;
		height: 44px;
		border: 1px solid rgba(126, 4, 15, 0.18);
		border-radius: 50%;
		background: #fff;
		font-size: 11px;
		font-weight: 700;
		line-height: 1;
		color: var(--color-primary);
	}

	.home-v2-process__mobile-route-title {
		display: flex;
		align-items: center;
		min-height: 44px;
		padding: 12px 16px;
		border-radius: 999px;
		background: var(--color-primary);
		font-size: 15px;
		font-weight: 700;
		line-height: 1.15;
		color: #fff;
	}

	.home-v2-process__mobile-route-item--optional {
		grid-template-columns: 44px minmax(0, 0.82fr);
		margin-top: -4px;
		margin-bottom: -2px;
		padding-left: 34px;
	}

	.home-v2-process__mobile-route-item--optional::before {
		content: "";
		position: absolute;
		top: 0;
		bottom: 0;
		left: 55px;
		border-left: 1px dashed rgba(126, 4, 15, 0.36);
	}

	.home-v2-process__mobile-route-item--optional .home-v2-process__mobile-route-index {
		width: 42px;
		height: 32px;
		border-style: dashed;
		border-radius: 999px;
		font-size: 9px;
	}

	.home-v2-process__mobile-route-item--optional .home-v2-process__mobile-route-title {
		min-height: 36px;
		padding: 9px 14px;
		border: 1px dashed rgba(126, 4, 15, 0.32);
		background: #fff;
		font-size: 13px;
		color: var(--color-primary);
	}

	.home-v2-editorial__card {
		grid-template-columns: 112px minmax(0, 1fr);
	}

	.home-v2-editorial__card-media,
	.home-v2-editorial__card-image {
		min-height: 108px;
	}

	.home-v2-footer a {
		display: inline-flex;
		align-items: center;
		min-height: 44px;
	}
}

@media (max-width: 21.25em) {
	.home-v2-team__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.home-v2-team__card-name {
		font-size: 12px;
	}

	.home-v2-team__card-role {
		font-size: 11px;
	}

	.home-v2-projects__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px;
	}

	.home-v2-projects .card-v2__info {
		padding: 10px 9px 11px;
	}

	.home-v2-projects .card-v2__price {
		font-size: 13px;
	}

	.home-v2-projects .card-v2__params {
		font-size: 10.5px;
	}

	.home-v2-process__mobile-route-title {
		font-size: 14px;
		padding-inline: 13px;
	}

	.home-v2-editorial__card {
		grid-template-columns: 96px minmax(0, 1fr);
	}
}

/* 2026-05-17 mobile route cleanup */
@media (max-width: 48em) {
	.home-v2-process__map {
		display: none;
	}

	.home-v2-process__mobile-route {
		padding: 18px;
		border: 1px solid rgba(31, 29, 27, 0.08);
		border-radius: 24px;
		background: #fff;
		box-shadow: 0 18px 38px rgba(35, 27, 20, 0.06);
	}

	.home-v2-process__mobile-route::before {
		top: 38px;
		bottom: 38px;
		left: 39px;
	}

	.home-v2-projects__footer {
		align-items: flex-start;
	}

	.home-v2-projects__footer-link {
		align-self: flex-start;
		width: fit-content;
		justify-content: flex-start;
	}
}

@media (max-width: 48em) {
	.home-v2-projects__footer-link {
		max-width: 260px;
	}
}

/* 2026-05-18 home-v2 typography and CTA normalization */
.home-v2-page {
	--home-v2-title-size: clamp(40px, 4.1vw, 56px);
	--home-v2-title-line: 0.94;
	--home-v2-lead-size: 18px;
	--home-v2-lead-line: 1.42;
	--home-v2-card-title-size: 18px;
	--home-v2-card-text-size: 15px;
	--home-v2-card-text-line: 1.45;
	--home-v2-primary-cta-height: 56px;
	--home-v2-primary-cta-radius: 10px;
	--home-v2-primary-cta-min-width: 260px;
	--home-v2-secondary-target: 44px;
}

.home-v2-routes__title,
.home-v2-built__title,
.home-v2-team__title,
.home-v2-projects__title,
.home-v2-terms__title,
.home-v2-process__title,
.home-v2-editorial__title {
	font-size: var(--home-v2-title-size);
	line-height: var(--home-v2-title-line);
}

.home-v2-routes__lead,
.home-v2-built__lead,
.home-v2-team__lead,
.home-v2-projects__lead,
.home-v2-terms__lead,
.home-v2-process__lead,
.home-v2-editorial__lead {
	font-size: var(--home-v2-lead-size);
	line-height: var(--home-v2-lead-line);
}

.home-v2-page .btn,
.home-v2-hero__btn,
.home-v2-built__footer-btn,
.home-v2-team__footer-btn,
.home-v2-projects__footer-btn,
.home-v2-projects__aside-btn,
.home-v2-process__action-btn,
.home-v2-final-cta__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: var(--home-v2-primary-cta-min-width);
	min-height: var(--home-v2-primary-cta-height);
	padding-right: 30px;
	padding-left: 30px;
	border-radius: var(--home-v2-primary-cta-radius);
	text-align: center;
}

.home-v2-hero__link,
.home-v2-routes__card-link,
.home-v2-projects__footer-link,
.home-v2-projects__collection-link,
.home-v2-editorial__group-link {
	min-height: var(--home-v2-secondary-target);
	width: fit-content;
	max-width: 100%;
}

.home-v2-team__card-name {
	font-size: clamp(20px, 1.5vw, 24px);
	line-height: 1.04;
	letter-spacing: 0.015em;
}

.home-v2-team__card-role {
	margin-top: 4px;
	font-size: 14px;
	line-height: 1.35;
}

.home-v2-routes__card-text,
.home-v2-projects__offer-text,
.home-v2-terms__card-text,
.home-v2-process__detail-text,
.home-v2-editorial__group-text,
.home-v2-editorial__card-excerpt {
	font-size: var(--home-v2-card-text-size);
	line-height: var(--home-v2-card-text-line);
}

.home-v2-editorial__card-title {
	font-family: "Bebas Neue", sans-serif;
	font-size: var(--home-v2-card-title-size);
	line-height: 1.05;
	font-weight: 700;
	text-transform: uppercase;
}

@media (max-width: 48em) {
	.home-v2-page {
		--home-v2-title-size: 38px;
		--home-v2-lead-size: 16px;
		--home-v2-lead-line: 1.38;
		--home-v2-primary-cta-height: 56px;
		--home-v2-primary-cta-min-width: 0;
		--home-v2-card-title-size: 16px;
		--home-v2-card-text-size: 15px;
	}

	.home-v2-hero__btn,
	.home-v2-built__footer-btn,
	.home-v2-team__footer-btn,
	.home-v2-projects__footer-btn,
	.home-v2-projects__aside-btn,
	.home-v2-process__action-btn,
	.home-v2-final-cta__btn {
		width: 100%;
	}

	.home-v2-hero__link {
		width: 100%;
		justify-content: space-between;
	}

	.home-v2-projects__footer-link,
	.home-v2-editorial__group-link {
		width: fit-content;
		max-width: 100%;
	}

	.home-v2-team__card-name {
		font-size: clamp(16px, 4.6vw, 19px);
		line-height: 1.05;
	}

	.home-v2-team__card-role {
		font-size: clamp(12px, 3.35vw, 14px);
		line-height: 1.3;
	}
}

@media (max-width: 21.25em) {
	.home-v2-team__card-name {
		font-size: 15px;
	}

	.home-v2-team__card-role {
		font-size: 11.5px;
	}
}

/* 2026-05-18 fullscreen mobile menu */
.home-v2-header__menu-cta {
	display: none;
}

.home-v2-header__socials {
	display: none;
}

@media (max-width: 62em) {
	html.home-v2-menu-open,
	html.home-v2-menu-open body {
		overflow: hidden;
	}

	.home-v2-header.is-menu-open {
		position: fixed;
		z-index: 100;
		background: #fff;
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
	}

	.home-v2-header.is-menu-open::before {
		display: none;
	}

	.home-v2-header.is-menu-open .home-v2-header__container {
		align-items: center;
		min-height: 76px;
		padding: 14px 22px;
	}

	.home-v2-header.is-menu-open .home-v2-header__logo {
		color: var(--color-primary);
		fill: var(--color-primary);
		filter: none;
	}

	.home-v2-header.is-menu-open .home-v2-header__burger {
		position: relative;
		z-index: 102;
		width: 52px;
		height: 52px;
		border-color: rgba(56, 43, 36, 0.14);
		background: #fff;
		color: #382b24;
		fill: currentColor;
		stroke: currentColor;
	}

	.home-v2-header.is-menu-open .home-v2-header__panel {
		position: fixed;
		inset: 0;
		z-index: 101;
		display: grid;
		grid-template-rows: auto 1fr auto auto;
		align-items: stretch;
		gap: 0;
		padding: 94px 26px 22px;
		border: 0;
		border-radius: 0;
		background: #fff;
		box-shadow: none;
		overflow-y: auto;
	}

	.home-v2-header.is-menu-open .home-v2-header__nav {
		display: block;
	}

	.home-v2-header.is-menu-open .home-v2-header__menu {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
		gap: 0;
		width: 100%;
	}

	.home-v2-header.is-menu-open .home-v2-header__menu-item {
		border-bottom: 1px solid rgba(56, 43, 36, 0.1);
	}

	.home-v2-header.is-menu-open .home-v2-header__menu a {
		display: flex;
		align-items: center;
		justify-content: space-between;
		min-height: 58px;
		width: 100%;
		padding: 0;
		border: 0;
		background: transparent;
		font-size: clamp(24px, 7.3vw, 30px);
		line-height: 1;
		font-weight: 700;
		letter-spacing: -0.02em;
		color: #1f1d1b !important;
		text-shadow: none;
	}

	.home-v2-header.is-menu-open .home-v2-header__menu a::after {
		position: static;
		display: block;
		flex: 0 0 30px;
		width: 30px;
		height: 30px;
		border: 1px solid rgba(56, 43, 36, 0.14);
		border-radius: 50%;
		background:
			url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 14 14' fill='none'%3E%3Cpath d='M3 7H11' stroke='%23382b24' stroke-width='1.4'/%3E%3Cpath d='M7 3L11 7L7 11' stroke='%23382b24' stroke-width='1.4'/%3E%3C/svg%3E")
			center/12px 12px no-repeat;
		opacity: 1;
		transform: none;
	}

	.home-v2-header.is-menu-open .home-v2-header__meta {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-end;
		gap: 10px;
		padding-top: 22px;
	}

	.home-v2-header.is-menu-open .home-v2-header__search,
	.home-v2-header.is-menu-open .home-v2-header__phone-link {
		display: flex;
		align-items: center;
		justify-content: flex-start;
		width: 100%;
		min-height: 52px;
		padding: 0 18px;
		border: 1px solid rgba(56, 43, 36, 0.12);
		border-radius: 999px;
		background: #fff;
		font-size: 16px;
		font-weight: 600;
		color: #382b24 !important;
		fill: currentColor;
		stroke: currentColor;
		text-shadow: none;
	}

	.home-v2-header.is-menu-open .home-v2-header__search::after {
		content: "Поиск";
		margin-left: 10px;
	}

	.home-v2-header.is-menu-open .home-v2-header__phone {
		width: 100%;
	}

	.home-v2-header.is-menu-open .home-v2-header__socials {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 16px;
		width: 100%;
		padding-top: 14px;
		color: #382b24;
		text-shadow: none;
	}

	.home-v2-header__socials-label {
		font-size: 14px;
		line-height: 1.2;
		color: rgba(56, 43, 36, 0.68);
	}

	.home-v2-header__socials-list {
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-end;
		gap: 10px;
	}

	.home-v2-header__social-link {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 42px;
		height: 42px;
		border: 1px solid rgba(56, 43, 36, 0.14);
		border-radius: 50%;
		background: #fff;
		color: #382b24;
		transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
	}

	.home-v2-header__social-link:hover,
	.home-v2-header__social-link:focus-visible {
		border-color: rgba(126, 4, 15, 0.34);
		color: var(--color-primary);
		transform: translateY(-1px);
	}

	.home-v2-header__social-link .icon {
		width: 22px;
		height: 22px;
	}

	.home-v2-header.is-menu-open .home-v2-header__menu-cta {
		display: flex;
		align-self: end;
		width: 100%;
		min-height: 56px;
		margin-top: 18px;
		border-radius: 10px;
	}
}

@media (max-width: 359px) {
	.home-v2-header.is-menu-open .home-v2-header__socials {
		justify-content: space-between;
	}

	.home-v2-header__socials-label {
		display: block;
	}

	.home-v2-header__socials-list {
		justify-content: flex-end;
	}
}

@media (max-width: 62em) {
	.home-v2-header.is-menu-open .home-v2-header__search {
		margin-left: 0;
	}

	.home-v2-header.is-menu-open .home-v2-header__meta {
		width: 100%;
	}
}

/* 2026-05-18 mobile hero declutter step 1 */
.home-v2-hero__title-mobile {
	display: none;
}

@media (max-width: 48em) {
	.home-v2-hero__materials {
		display: none;
	}

	.home-v2-hero__title-desktop {
		display: none;
	}

	.home-v2-hero__title-mobile {
		display: block;
	}

	.home-v2-hero__title-mobile span {
		display: block;
		white-space: normal;
	}

	.home-v2-hero__title-mobile span + span {
		margin-top: 0.22em;
		font-size: 0.76em;
		line-height: 1.04;
	}
}

@media (max-width: 48em) {
	.home-v2-hero__title .home-v2-hero__title-desktop {
		display: none;
	}

	.home-v2-hero__title .home-v2-hero__title-mobile {
		display: block;
	}
}

/* 2026-05-20 mobile hero composition step 2 */
@media (max-width: 48em) {
	.home-v2-hero--media .home-v2-hero__content,
	.home-v2-hero__content {
		display: grid;
		grid-template-rows: auto 1fr auto auto;
		align-content: stretch;
		gap: 0;
		min-height: 100%;
	}

	.home-v2-hero__copy {
		display: contents;
	}

	.home-v2-hero__title {
		align-self: start;
		max-width: 100%;
		font-size: clamp(40px, 11vw, 52px);
		line-height: 0.98;
		white-space: normal;
	}

	.home-v2-hero__title-mobile > span {
		white-space: nowrap;
	}

	.home-v2-hero__lead {
		align-self: end;
		max-width: 30ch;
		margin-bottom: 16px;
		font-size: clamp(14px, 3.8vw, 16px);
		line-height: 1.32;
	}

	.home-v2-hero__meta {
		gap: 0;
	}

	.home-v2-hero__actions {
		gap: 0;
		padding-top: 0;
	}

	.home-v2-hero__link {
		display: none;
	}
}

@media (max-width: 22.5em) {
	.home-v2-hero__title {
		font-size: 38px;
	}

	.home-v2-hero__lead {
		max-width: 28ch;
		font-size: 14px;
	}
}

/* 2026-05-28 mobile rhythm standard */
.home-v2-hero__title .home-v2-hero__title-mobile {
	display: none;
}

@media (max-width: 48em) {
	.home-v2-page {
		--home-v2-section-gap: 72px;
		--home-v2-stack-gap: 26px;
		--home-v2-card-gap: 16px;
		--home-v2-group-gap: 12px;
		--home-v2-cta-gap: 24px;
		--home-v2-title-size: clamp(34px, 9.8vw, 38px);
		--home-v2-title-line: 0.96;
		--home-v2-lead-size: 16px;
		--home-v2-lead-line: 1.46;
		--home-v2-card-title-size: 18px;
		--home-v2-card-text-size: 15px;
		--home-v2-card-text-line: 1.5;
		--home-v2-primary-cta-height: 56px;
		--home-v2-primary-cta-radius: 10px;
		--home-v2-secondary-target: 44px;
	}

	.home-v2-page > section:not(.home-v2-hero) > .container {
		padding-inline: 20px;
	}

	.home-v2-hero__container.container {
		padding-inline: 16px;
	}

	.home-v2-hero__title {
		font-size: clamp(40px, 12.3vw, 48px);
		line-height: 0.98;
		letter-spacing: 0;
	}

	.home-v2-hero__title .home-v2-hero__title-desktop {
		display: none;
	}

	.home-v2-hero__title .home-v2-hero__title-mobile {
		display: block;
	}

	.home-v2-hero__title-mobile span + span {
		margin-top: 0.02em;
		font-size: inherit;
		line-height: inherit;
	}

	.home-v2-hero__lead {
		font-size: 16px;
		line-height: 1.42;
	}

	.home-v2-trust {
		padding-top: 18px;
	}

	.home-v2-trust__container {
		display: grid;
		grid-template-columns: 1fr;
		gap: 0;
		padding: 4px 18px;
		border: 1px solid rgba(115, 102, 92, 0.12);
		border-radius: 22px;
		background: #fff;
		box-shadow: 0 18px 38px rgba(35, 27, 20, 0.07);
	}

	.home-v2-trust__item {
		display: grid;
		grid-template-columns: 1fr;
		align-items: start;
		gap: 5px;
		padding: 16px 0;
		border: 0;
		border-radius: 0;
		background: transparent;
		box-shadow: none;
	}

	.home-v2-trust__item + .home-v2-trust__item {
		border-top: 1px solid rgba(115, 102, 92, 0.1);
	}

	.home-v2-trust__value {
		margin: 0;
		font-size: clamp(22px, 6.2vw, 26px);
		line-height: 1.08;
	}

	.home-v2-trust__label {
		font-size: 14px;
		line-height: 1.42;
		max-width: 32ch;
	}

	.home-v2-routes {
		padding-top: 64px;
	}

	.home-v2-routes__intro,
	.home-v2-built__intro,
	.home-v2-team__intro,
	.home-v2-projects__intro,
	.home-v2-terms__head,
	.home-v2-process__head,
	.home-v2-editorial__head {
		gap: 12px;
	}

	.home-v2-routes__head,
	.home-v2-built__head,
	.home-v2-team__head,
	.home-v2-projects__head,
	.home-v2-terms--grid .home-v2-terms__head,
	.home-v2-editorial__head {
		margin-bottom: 26px;
	}

	.home-v2-routes__card,
	.home-v2-terms--grid .home-v2-terms__card,
	.home-v2-process__detail,
	.home-v2-process__mobile-route,
	.home-v2-editorial__group {
		border-radius: 22px;
	}

	.home-v2-routes__card {
		padding: 24px 22px;
	}

	.home-v2-routes__card-title {
		margin-bottom: 14px;
		font-size: clamp(26px, 7.5vw, 31px);
		line-height: 0.98;
		letter-spacing: 0;
	}

	.home-v2-routes__card-link {
		padding-top: 24px;
		min-height: 44px;
	}

	.home-v2-built__map-card,
	.home-v2-built__aside {
		border-radius: 22px;
	}

	.home-v2-built__map-stage,
	.home-v2-built__map {
		min-height: 340px;
	}

	.home-v2-team__grid,
	.home-v2-projects__grid {
		gap: 16px 12px;
	}

	.home-v2-team__card-name {
		font-size: clamp(13px, 3.9vw, 16px);
		line-height: 1.12;
	}

	.home-v2-team__card-role {
		font-size: clamp(12px, 3.35vw, 13px);
		line-height: 1.32;
	}

	.home-v2-projects .card-v2__title {
		font-size: clamp(9.8px, 2.7vw, 11px);
		line-height: 1.14;
	}

	.home-v2-editorial__card-title {
		font-size: clamp(14px, 4vw, 16px);
		line-height: 1.18;
	}

	.home-v2-final-cta {
		margin-top: 72px;
	}
}

@media (max-width: 22.5em) {
	.home-v2-page {
		--home-v2-section-gap: 64px;
		--home-v2-stack-gap: 24px;
		--home-v2-card-gap: 14px;
	}

	.home-v2-page > section:not(.home-v2-hero) > .container {
		padding-inline: 16px;
	}

	.home-v2-hero__title {
		font-size: 40px;
	}

	.home-v2-hero__lead {
		font-size: 15px;
	}

	.home-v2-trust__container {
		padding-inline: 16px;
		border-radius: 20px;
	}

	.home-v2-trust__item {
		padding: 15px 0;
	}

	.home-v2-routes {
		padding-top: 60px;
	}

	.home-v2-routes__card {
		padding: 22px 20px;
	}
}

/* 2026-05-28 mobile rhythm standard, full-page pass */
@media (max-width: 48em) {
	.home-v2-built,
	.home-v2-team,
	.home-v2-projects,
	.home-v2-terms,
	.home-v2-process,
	.home-v2-editorial {
		padding-top: var(--home-v2-section-gap);
	}

	.home-v2-built__grid,
	.home-v2-built__cards,
	.home-v2-team__grid,
	.home-v2-projects__grid,
	.home-v2-terms--grid .home-v2-terms__grid,
	.home-v2-editorial__grid,
	.home-v2-editorial__list {
		gap: var(--home-v2-card-gap);
	}

	.home-v2-built__footer,
	.home-v2-team__footer,
	.home-v2-projects__footer,
	.home-v2-process__actions {
		padding-top: var(--home-v2-cta-gap);
	}

	.home-v2-built__footer-btn,
	.home-v2-team__footer-btn,
	.home-v2-projects__footer-btn,
	.home-v2-projects__aside-btn,
	.home-v2-process__action-btn,
	.home-v2-final-cta__btn {
		min-height: var(--home-v2-primary-cta-height);
		border-radius: var(--home-v2-primary-cta-radius);
	}

	.home-v2-built__map-card {
		padding: 0;
		border: 0;
		background: transparent;
		box-shadow: none;
	}

	.home-v2-built__map-stage {
		margin-inline: -20px;
		min-height: 320px;
		overflow: hidden;
	}

	.home-v2-built__map {
		min-height: 320px;
	}

	.home-v2-built__cards .card-v2,
	.home-v2-projects .card-v2 {
		border-radius: 18px;
	}

	.home-v2-built__cards .card-v2__info {
		padding: 20px 22px 22px;
	}

	.home-v2-built__cards .card-v2__name {
		font-size: clamp(20px, 5.6vw, 24px);
		line-height: 1.08;
	}

	.home-v2-built__cards .card-v2__params {
		font-size: clamp(17px, 4.8vw, 21px);
		line-height: 1.16;
	}

	.home-v2-team__grid {
		gap: 28px 14px;
	}

	.home-v2-team__item {
		gap: 8px;
	}

	.home-v2-team__item img,
	.home-v2-team .home-v2-team__card-image {
		aspect-ratio: 3 / 4;
		max-height: none;
		object-fit: cover;
		object-position: center top;
	}

	.home-v2-team__footer-btn {
		width: 100%;
	}

	.home-v2-projects__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 14px 12px;
	}

	.home-v2-projects .card-v2__image img {
		aspect-ratio: 1.16 / 1;
	}

	.home-v2-projects .card-v2__info {
		padding: 12px 12px 14px;
	}

	.home-v2-projects .card-v2__price {
		font-size: clamp(15px, 4.2vw, 17px);
		line-height: 1.12;
	}

	.home-v2-projects .card-v2__params {
		font-size: clamp(12px, 3.25vw, 13px);
		line-height: 1.22;
	}

	.home-v2-projects__offer {
		margin-top: 24px;
		border-radius: 18px;
	}

	.home-v2-projects__footer {
		gap: 18px;
	}

	.home-v2-projects__footer-link {
		min-height: 44px;
	}

	.home-v2-terms--grid .home-v2-terms__card {
		gap: 10px;
		min-height: 0;
		padding: 20px 18px;
		border-radius: 20px;
	}

	.home-v2-terms--grid .home-v2-terms__card-title,
	.home-v2-terms--grid .home-v2-terms__card--key .home-v2-terms__card-title {
		font-size: clamp(18px, 5.5vw, 21px);
		line-height: 1.08;
	}

	.home-v2-terms--grid .home-v2-terms__card-text,
	.home-v2-terms--grid .home-v2-terms__card--key .home-v2-terms__card-text {
		font-size: 15px;
		line-height: 1.48;
	}

	.home-v2-process__layout {
		gap: 20px;
	}

	.home-v2-process__detail {
		gap: 12px;
		padding: 22px 20px;
		border-radius: 22px;
	}

	.home-v2-process__detail-title {
		font-size: clamp(30px, 8.8vw, 34px);
		line-height: 0.98;
	}

	.home-v2-process__detail-text {
		font-size: 15px;
		line-height: 1.5;
	}

	.home-v2-process__mobile-route {
		gap: 10px;
		padding: 18px;
		border-radius: 22px;
	}

	.home-v2-process__mobile-route-title {
		min-height: 44px;
		font-size: 15px;
		line-height: 1.15;
	}

	.home-v2-editorial__grid {
		grid-template-columns: 1fr;
	}

	.home-v2-editorial__group {
		gap: 18px;
		padding: 22px 20px;
		border-radius: 22px;
	}

	.home-v2-editorial__group-title {
		font-size: 30px;
	}

	.home-v2-editorial__group-text {
		font-size: 15px;
		line-height: 1.48;
	}

	.home-v2-editorial__group-link {
		width: fit-content;
		min-height: 44px;
	}

	.home-v2-editorial__card {
		grid-template-columns: 112px minmax(0, 1fr);
		border-radius: 18px;
	}

	.home-v2-editorial__card-media,
	.home-v2-editorial__card-image {
		min-height: 112px;
	}

	.home-v2-editorial__card-body {
		padding: 14px 16px;
	}

	.home-v2-editorial__card-title {
		display: -webkit-box;
		overflow: hidden;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 4;
	}

	.home-v2-final-cta {
		margin-top: var(--home-v2-section-gap);
		padding-top: 0;
		padding-bottom: 0;
	}

	.home-v2-final-cta__card {
		min-height: 0;
		gap: 28px;
		padding: 72px 0;
	}

	.home-v2-final-cta__content {
		gap: 14px;
	}

	.home-v2-final-cta__eyebrow {
		font-size: 13px;
	}

	.home-v2-final-cta__title {
		font-size: clamp(40px, 11vw, 48px);
		line-height: 0.98;
	}

	.home-v2-final-cta__text {
		font-size: 16px;
		line-height: 1.5;
	}
}

@media (max-width: 23.4375em) {
	.home-v2-projects__grid {
		display: flex;
		gap: 12px;
		margin-inline: -16px;
		padding-inline: 16px;
		overflow-x: auto;
		overscroll-behavior-x: contain;
		scroll-padding-inline: 16px;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
	}

	.home-v2-projects__grid .card-v2 {
		flex: 0 0 168px;
		scroll-snap-align: start;
	}

	.home-v2-projects__grid::-webkit-scrollbar {
		display: none;
	}

	.home-v2-projects .card-v2__price {
		font-size: 14px;
	}

	.home-v2-projects .card-v2__params {
		font-size: 11.5px;
	}

	.home-v2-editorial__card {
		grid-template-columns: 96px minmax(0, 1fr);
	}

	.home-v2-editorial__card-media,
	.home-v2-editorial__card-image {
		min-height: 106px;
	}

	.home-v2-editorial__card-body {
		padding: 13px 14px;
	}

	.home-v2-editorial__card-title {
		font-size: 14px;
		line-height: 1.16;
	}
}

/* 2026-05-29 PDF review pass */
.home-v2-header {
	position: relative;
	inset: auto;
	background: #fff;
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
	--home-v2-header-hover-color: var(--color-primary);
	--home-v2-header-hover-border: rgba(126, 4, 15, 0.28);
	--home-v2-header-hover-bg: rgba(126, 4, 15, 0.08);
}

.home-v2-header::before {
	display: none;
}

.home-v2-header__container {
	min-height: 82px;
	padding-top: 16px;
	padding-bottom: 16px;
}

.home-v2-header__menu a,
.home-v2-header__search,
.home-v2-header__burger,
.home-v2-header__burger .burger,
.home-v2-header__burger .burger span {
	color: #382b24;
	fill: currentColor;
	stroke: currentColor;
}

.home-v2-header__phone-link {
	border: 1px solid rgba(56, 43, 36, 0.12);
	background: #fff;
	color: #382b24;
	box-shadow: none;
}

.home-v2-header__search,
.home-v2-header__burger {
	border-color: rgba(56, 43, 36, 0.14);
	background: #fff;
}

.home-v2-hero {
	margin-top: 0;
	padding-top: 0;
}

.home-v2-hero__title,
.home-v2-routes__title,
.home-v2-built__title,
.home-v2-team__title,
.home-v2-projects__title,
.home-v2-terms__title,
.home-v2-process__title,
.home-v2-editorial__title,
.home-v2-final-cta__title,
.home-v2-routes__card-title,
.home-v2-editorial__group-title {
	text-wrap: balance;
}

.home-v2-process__mobile-note {
	display: none;
}

.home-v2-hero__lead-mobile,
.home-v2-hero__btn-mobile {
	display: none;
}

@media (max-width: 62em) {
	.home-v2-header {
		background: #fff;
	}

	.home-v2-header__container {
		min-height: 70px;
		padding-top: 12px;
		padding-bottom: 12px;
	}

	.home-v2-header__burger {
		border-color: rgba(56, 43, 36, 0.14);
		background: #fff;
		color: #382b24;
		fill: currentColor;
		stroke: currentColor;
	}

	.home-v2-hero {
		margin-top: 0;
		padding-top: 0;
	}
}

@media (max-width: 48em) {
	.home-v2-hero__media-stage .home-v2-hero__frame,
	.home-v2-hero__frame,
	.home-v2-hero__image,
	.home-v2-hero__video,
	.home-v2-hero__video-poster,
	.home-v2-hero__image-placeholder {
		min-height: min(540px, calc(100svh - 92px));
	}

	.home-v2-hero__overlay {
		padding-top: 24px;
	}

	.home-v2-hero__media-stage .home-v2-hero__frame {
		border-radius: 28px;
		overflow: hidden;
	}

	.home-v2-projects__grid {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 14px 12px;
		margin-inline: 0;
		padding-inline: 0;
		overflow: visible;
		scroll-snap-type: none;
	}

	.home-v2-projects__grid .card-v2 {
		flex: initial;
		scroll-snap-align: none;
	}

	.home-v2-process__mobile-route-item--optional {
		display: grid;
	}

	.home-v2-process__mobile-note {
		display: block;
		margin-top: 14px;
		padding: 14px 16px;
		border: 1px solid rgba(126, 4, 15, 0.18);
		border-radius: 18px;
		background: #fff;
		font-size: 14px;
		line-height: 1.45;
		color: #675f58;
	}

	.home-v2-editorial__group {
		gap: 16px;
	}

	.home-v2-editorial__group-head {
		display: block;
	}

	.home-v2-editorial__card-title {
		display: block;
		overflow: visible;
		-webkit-line-clamp: initial;
	}

	.home-v2-editorial__group-link {
		align-self: flex-start;
		margin-top: 2px;
	}
}

@media (max-width: 22.5em) {
	.home-v2-hero__media-stage .home-v2-hero__frame,
	.home-v2-hero__frame,
	.home-v2-hero__image,
	.home-v2-hero__video,
	.home-v2-hero__video-poster,
	.home-v2-hero__image-placeholder {
		min-height: 468px;
	}

	.home-v2-projects__grid {
		gap: 12px 10px;
	}

	.home-v2-projects .card-v2__info {
		padding: 10px 9px 11px;
	}

	.home-v2-projects .card-v2__price {
		font-size: 13px;
	}

	.home-v2-projects .card-v2__params {
		font-size: 10.5px;
	}
}

/* 2026-05-30 mobile process route: restore mortgage option and animate route. */
@media (max-width: 48em) {
	.home-v2-process__mobile-route {
		--home-v2-process-route-line-scale: 0;
	}

	.home-v2-process__mobile-route::before {
		transform: scaleY(var(--home-v2-process-route-line-scale));
		transform-origin: top;
		transition: transform 620ms ease;
	}

	.home-v2-process__mobile-route-marker {
		position: absolute;
		top: 0;
		left: 33.5px;
		z-index: 1;
		width: 11px;
		height: 11px;
		margin-top: -5.5px;
		border: 2px solid #fff;
		border-radius: 50%;
		background: var(--color-primary);
		box-shadow: 0 0 0 4px rgba(126, 4, 15, 0.12);
		opacity: 0;
		transform: translateY(0);
		will-change: transform;
		pointer-events: none;
	}

	.home-v2-process__mobile-route.is-mobile-animated {
		--home-v2-process-route-line-scale: 1;
	}

	.home-v2-process__mobile-route-item {
		z-index: 2;
		opacity: 0;
		transform: translateY(10px);
		transition:
			opacity 260ms ease,
			transform 260ms ease;
		transition-delay: var(--home-v2-process-route-delay, 0ms);
	}

	.home-v2-process__mobile-route.is-mobile-animated .home-v2-process__mobile-route-item {
		opacity: 1;
		transform: translateY(0);
	}

	.home-v2-process__mobile-route-item--optional {
		grid-template-columns: 44px minmax(0, 1fr);
		margin: -4px 0 2px;
		padding: 9px 12px 9px 0;
	}

	.home-v2-process__mobile-route-item--optional::before {
		content: "";
		position: absolute;
		top: -4px;
		bottom: -4px;
		left: calc(var(--home-v2-process-route-axis) - 0.5px);
		z-index: 0;
		width: 1px;
		background: repeating-linear-gradient(
			to bottom,
			rgba(126, 4, 15, 0.34) 0 3px,
			transparent 3px 7px
		);
	}

	.home-v2-process__mobile-route-item--optional .home-v2-process__mobile-route-index {
		width: 9px;
		height: 9px;
		margin-inline: auto;
		border: 1px solid rgba(126, 4, 15, 0.38);
		border-radius: 50%;
		background: #fff;
		font-size: 0;
	}

	.home-v2-process__mobile-route-item--optional .home-v2-process__mobile-route-title {
		min-height: 40px;
		padding: 10px 16px;
		border: 1px dashed rgba(126, 4, 15, 0.28);
		background: #fff;
		font-size: 14px;
		color: var(--color-primary);
	}
}

@media (max-width: 48em) and (prefers-reduced-motion: reduce) {
	.home-v2-process__mobile-route::before,
	.home-v2-process__mobile-route-item {
		transition: none;
	}

	.home-v2-process__mobile-route {
		--home-v2-process-route-line-scale: 1;
	}

	.home-v2-process__mobile-route-item {
		opacity: 1;
		transform: none;
	}

	.home-v2-process__mobile-route-marker {
		opacity: 0;
	}
}

/* 2026-05-31 mobile menu close alignment */
@media (max-width: 62em) {
	.home-v2-header.is-menu-open .home-v2-header__burger {
		position: fixed;
		top: max(18px, env(safe-area-inset-top));
		right: max(22px, env(safe-area-inset-right));
		margin-left: 0;
		z-index: 103;
	}

	.home-v2-header.is-menu-open .home-v2-header__panel {
		display: flex;
		flex-direction: column;
		min-height: 100svh;
	}

	.home-v2-header.is-menu-open .home-v2-header__nav {
		flex: 0 0 auto;
	}

	.home-v2-header.is-menu-open .home-v2-header__meta {
		flex: 0 0 auto;
		margin-top: auto;
	}

	.home-v2-header.is-menu-open .home-v2-header__socials,
	.home-v2-header.is-menu-open .home-v2-header__menu-cta {
		flex: 0 0 auto;
	}
}

@media (max-width: 22.5em) {
	.home-v2-header.is-menu-open .home-v2-header__burger {
		top: max(14px, env(safe-area-inset-top));
		right: max(16px, env(safe-area-inset-right));
	}

	.home-v2-header.is-menu-open .home-v2-header__panel {
		min-height: 100svh;
		padding: 66px 26px 10px;
	}

	.home-v2-header.is-menu-open .home-v2-header__menu a {
		min-height: 46px;
		font-size: 21px;
	}

	.home-v2-header.is-menu-open .home-v2-header__meta {
		margin-top: clamp(30px, 7svh, 56px);
		padding-top: 0;
		gap: 10px;
	}

	.home-v2-header.is-menu-open .home-v2-header__search,
	.home-v2-header.is-menu-open .home-v2-header__phone-link {
		min-height: 46px;
	}

	.home-v2-header.is-menu-open .home-v2-header__socials {
		padding-top: 12px;
	}

	.home-v2-header.is-menu-open .home-v2-header__menu-cta {
		min-height: 52px;
		margin-top: 14px;
	}
}

@media (max-width: 20em) {
	.home-v2-header.is-menu-open .home-v2-header__socials {
		gap: 10px;
	}

	.home-v2-header__socials-label {
		font-size: 13px;
	}

	.home-v2-header__socials-list {
		gap: 8px;
	}

	.home-v2-header__social-link {
		width: 36px;
		height: 36px;
	}

	.home-v2-header__social-link .icon {
		width: 20px;
		height: 20px;
	}

	.home-v2-process__mobile-route-item--optional .home-v2-process__mobile-route-title {
		font-size: 13px;
	}
}

@media (max-width: 22.5em) and (min-height: 40em) {
	.home-v2-header.is-menu-open .home-v2-header__meta {
		margin-top: clamp(62px, 12svh, 86px);
	}
}

/* 2026-06-08 responsive visual pass after screenshot audit */
@media (max-width: 48em) {
	.home-v2-page {
		--home-v2-section-gap: clamp(58px, 14vw, 76px);
		--home-v2-card-gap: clamp(14px, 4vw, 18px);
		--home-v2-cta-gap: clamp(22px, 6vw, 30px);
	}

	.home-v2-page > section:not(.home-v2-hero) > .container {
		padding-inline: clamp(18px, 5vw, 24px);
	}

	.home-v2-hero__container.container {
		padding-inline: clamp(12px, 4.3vw, 18px);
	}

	.home-v2-hero__media-stage .home-v2-hero__frame,
	.home-v2-hero__frame,
	.home-v2-hero__image,
	.home-v2-hero__video,
	.home-v2-hero__video-poster,
	.home-v2-hero__image-placeholder {
		min-height: clamp(510px, calc(100svh - 96px), 660px);
	}

	.home-v2-hero__media-stage .home-v2-hero__frame {
		border-radius: 20px;
	}

	.home-v2-hero__overlay {
		padding: clamp(24px, 7vw, 36px) clamp(16px, 5vw, 24px) clamp(20px, 6vw, 28px);
	}

	.home-v2-hero--media .home-v2-hero__content,
	.home-v2-hero__content {
		width: 100%;
	}

	.home-v2-hero__copy {
		max-width: min(100%, 23rem);
	}

	.home-v2-hero__title {
		max-width: 9.4em;
		font-size: clamp(39px, 11.2vw, 54px);
		line-height: 0.96;
	}

	.home-v2-hero__lead {
		max-width: 22rem;
		font-size: clamp(15px, 4.15vw, 18px);
	}

	.home-v2-hero__actions {
		width: 100%;
	}

	.home-v2-hero__btn {
		width: 100%;
		max-width: 100%;
	}

	.home-v2-routes__head,
	.home-v2-built__head,
	.home-v2-team__head,
	.home-v2-projects__head,
	.home-v2-terms--grid .home-v2-terms__head,
	.home-v2-process__head,
	.home-v2-editorial__head {
		margin-bottom: clamp(22px, 6vw, 30px);
	}

	.home-v2-routes__title,
	.home-v2-built__title,
	.home-v2-team__title,
	.home-v2-projects__title,
	.home-v2-terms__title,
	.home-v2-process__title,
	.home-v2-editorial__title {
		max-width: 9.8em;
	}

	.home-v2-routes__lead,
	.home-v2-built__lead,
	.home-v2-team__lead,
	.home-v2-projects__lead,
	.home-v2-terms__lead,
	.home-v2-process__lead,
	.home-v2-editorial__lead {
		max-width: 31rem;
	}

	.home-v2-built__map-card {
		overflow: hidden;
		border: 1px solid rgba(115, 102, 92, 0.12);
		border-radius: 20px;
		background: #fff;
		box-shadow: 0 16px 34px rgba(35, 27, 20, 0.07);
	}

	.home-v2-built__map-stage {
		margin-inline: 0;
		min-height: clamp(210px, 58vw, 270px);
	}

	.home-v2-built__map {
		min-height: clamp(210px, 58vw, 270px);
	}

	.home-v2-built__cards {
		gap: 16px;
	}

	.home-v2-built__cards .card-v2__info {
		padding: 17px 18px 18px;
	}

	.home-v2-built__cards .card-v2__name {
		font-size: clamp(18px, 5.1vw, 22px);
	}

	.home-v2-terms--grid .home-v2-terms__grid {
		gap: 12px;
	}

	.home-v2-terms--grid .home-v2-terms__card {
		border-left-width: 3px;
		box-shadow: 0 10px 26px rgba(35, 27, 20, 0.045);
	}

	.home-v2-process__detail,
	.home-v2-process__mobile-route,
	.home-v2-editorial__group,
	.home-v2-routes__card {
		box-shadow: 0 12px 28px rgba(35, 27, 20, 0.055);
	}

	.home-v2-process__mobile-route {
		padding: 16px 16px 18px;
	}

	.home-v2-process__mobile-route-title {
		padding-inline: 16px;
	}

	.home-v2-editorial__group {
		padding: 20px 18px;
	}

	.home-v2-editorial__list {
		gap: 12px;
	}

	.home-v2-editorial__list .home-v2-editorial__card:first-child {
		display: block;
	}

	.home-v2-editorial__list .home-v2-editorial__card:first-child .home-v2-editorial__card-media,
	.home-v2-editorial__list .home-v2-editorial__card:first-child .home-v2-editorial__card-image {
		width: 100%;
		min-height: 0;
		aspect-ratio: 16 / 9;
	}

	.home-v2-editorial__list .home-v2-editorial__card:first-child .home-v2-editorial__card-body {
		padding: 16px 18px 18px;
	}

	.home-v2-editorial__list .home-v2-editorial__card:first-child .home-v2-editorial__card-title {
		font-size: 17px;
		line-height: 1.18;
		-webkit-line-clamp: 3;
	}

	.home-v2-editorial__card-excerpt {
		font-size: 13px;
	}
}

@media (max-width: 22.5em) {
	.home-v2-hero__media-stage .home-v2-hero__frame,
	.home-v2-hero__frame,
	.home-v2-hero__image,
	.home-v2-hero__video,
	.home-v2-hero__video-poster,
	.home-v2-hero__image-placeholder {
		min-height: 500px;
	}

	.home-v2-hero__overlay {
		padding-inline: 14px;
	}

	.home-v2-hero__title {
		font-size: 37px;
	}

	.home-v2-built__map-stage,
	.home-v2-built__map {
		min-height: 205px;
	}
}

@media (min-width: 40em) and (max-width: 62em) {
	.home-v2-page {
		--home-v2-section-gap: 82px;
		--home-v2-card-gap: 18px;
	}

	.home-v2-page > section:not(.home-v2-hero) > .container,
	.home-v2-header__container {
		padding-inline: 34px;
	}

	.home-v2-hero__container.container {
		padding-inline: 28px;
	}

	.home-v2-hero__media-stage .home-v2-hero__frame,
	.home-v2-hero__frame,
	.home-v2-hero__image,
	.home-v2-hero__video,
	.home-v2-hero__video-poster,
	.home-v2-hero__image-placeholder {
		min-height: clamp(500px, 62vw, 620px);
	}

	.home-v2-hero__overlay {
		padding: 44px 44px 36px;
	}

	.home-v2-hero__title {
		max-width: 10.5em;
		font-size: clamp(48px, 6.2vw, 62px);
	}

	.home-v2-hero__lead {
		max-width: 31rem;
		font-size: 18px;
	}

	.home-v2-routes__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 16px;
	}

	.home-v2-routes__card {
		padding: 22px 20px;
	}

	.home-v2-routes__card-title {
		font-size: clamp(24px, 3.4vw, 32px);
	}

	.home-v2-built__map-stage,
	.home-v2-built__map {
		min-height: 300px;
	}

	.home-v2-built__cards {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 16px;
	}

	.home-v2-built__cards .card-v2__image img {
		aspect-ratio: 1.22 / 1;
	}

	.home-v2-built__cards .card-v2__info {
		padding: 14px 14px 16px;
	}

	.home-v2-built__cards .card-v2__name {
		font-size: 16px;
	}

	.home-v2-built__cards .card-v2__params {
		font-size: 13px;
	}

	.home-v2-team__grid,
	.home-v2-projects__grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 18px;
	}

	.home-v2-team__item img,
	.home-v2-team .home-v2-team__card-image {
		aspect-ratio: 3 / 4;
	}

	.home-v2-projects .card-v2__image img {
		aspect-ratio: 1.12 / 1;
	}

	.home-v2-terms--grid .home-v2-terms__grid {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 14px;
	}

	.home-v2-terms--grid .home-v2-terms__card,
	.home-v2-terms--grid .home-v2-terms__card--compact,
	.home-v2-terms--grid .home-v2-terms__card--medium,
	.home-v2-terms--grid .home-v2-terms__card--wide {
		grid-column: auto;
		padding: 22px 22px 24px;
	}

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

	.home-v2-editorial__card {
		grid-template-columns: 122px minmax(0, 1fr);
	}
}

@media (min-width: 48.01em) and (max-width: 75em) {
	.home-v2-terms--grid .home-v2-terms__grid {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 16px;
	}

	.home-v2-terms--grid .home-v2-terms__card,
	.home-v2-terms--grid .home-v2-terms__card--compact,
	.home-v2-terms--grid .home-v2-terms__card--medium,
	.home-v2-terms--grid .home-v2-terms__card--wide,
	.home-v2-terms--grid .home-v2-terms__card--key {
		grid-column: auto;
		min-height: 0;
	}

	.home-v2-process__layout {
		display: grid;
		grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
		gap: 20px;
		align-items: stretch;
	}

	.home-v2-process__map {
		display: block;
	}

	.home-v2-process__mobile-route {
		display: none;
	}

	.home-v2-process__detail,
	.home-v2-process__map {
		min-height: 360px;
	}

	.home-v2-editorial__grid {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 20px;
	}
}

@media (min-width: 62.01em) {
	.home-v2-final-cta {
		padding-top: clamp(72px, 6vw, 104px);
		padding-bottom: clamp(72px, 6vw, 104px);
	}

	.home-v2-final-cta__card {
		min-height: 0;
		padding-block: 0;
	}

	.home-v2-built__map-stage,
	.home-v2-built__map {
		min-height: clamp(360px, 27vw, 440px);
	}

	.home-v2-built__map-card {
		overflow: hidden;
	}

	.home-v2-terms--grid .home-v2-terms__card {
		box-shadow: 0 12px 28px rgba(35, 27, 20, 0.04);
	}

	.home-v2-process__detail,
	.home-v2-process__map,
	.home-v2-editorial__group {
		box-shadow: 0 14px 34px rgba(35, 27, 20, 0.045);
	}
}

/* 2026-06-09 tablet and narrow mobile cleanup */
@media (max-width: 48em) {
	.home-v2-process__mobile-route {
		--home-v2-process-route-line-scale: 1;
	}

	.home-v2-process__mobile-route-item {
		opacity: 1;
		transform: none;
	}

	.home-v2-process__mobile-route.is-mobile-animated .home-v2-process__mobile-route-item {
		opacity: 1;
		transform: none;
	}
}

@media (max-width: 22.5em) {
	.home-v2-hero--media .home-v2-hero__content,
	.home-v2-hero__content {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		align-items: stretch;
		gap: 14px;
	}

	.home-v2-hero__copy {
		display: flex;
		flex: 1 1 auto;
		flex-direction: column;
		justify-content: space-between;
		max-width: 100%;
	}

	.home-v2-hero__title {
		width: auto;
		max-width: 100%;
		font-size: clamp(34px, 10.8vw, 38px);
		line-height: 1.04;
	}

	.home-v2-hero__title span,
	.home-v2-hero__title-mobile > span {
		display: block;
		max-width: 100%;
		white-space: normal;
	}

	.home-v2-hero__lead {
		align-self: flex-start;
		width: 100%;
		max-width: 100%;
		margin-top: auto;
		margin-bottom: 0;
		font-size: 13px;
		line-height: 1.32;
	}

	.home-v2-hero__lead-desktop,
	.home-v2-hero__btn-desktop {
		display: none;
	}

	.home-v2-hero__lead-mobile,
	.home-v2-hero__btn-mobile {
		display: inline;
	}

	.home-v2-hero__meta {
		flex: 0 0 auto;
		width: 100%;
	}

	.home-v2-hero__actions {
		width: 100%;
	}

		.home-v2-hero__btn {
			box-sizing: border-box;
			width: 100%;
			max-width: 100%;
			flex: 0 0 auto;
			align-self: center;
			min-height: 56px;
			margin-inline: auto;
			padding-inline: 12px;
			font-size: 16px;
			line-height: 1.12;
			white-space: normal;
			overflow-wrap: anywhere;
		}

	.home-v2-process__mobile-route {
		--home-v2-process-route-axis: 19px;
		padding: 14px 12px 16px;
	}

	.home-v2-process__mobile-route::before {
		left: calc(var(--home-v2-process-route-axis) - 0.5px);
	}

	.home-v2-process__mobile-route-item {
		grid-template-columns: 38px minmax(0, 1fr);
		gap: 9px;
		min-height: 48px;
		padding-right: 0;
	}

	.home-v2-process__mobile-route-index {
		width: 38px;
		height: 38px;
		font-size: 10px;
	}

	.home-v2-process__mobile-route-title {
		min-height: 42px;
		padding: 10px 13px;
		font-size: 14px;
		line-height: 1.12;
	}

	.home-v2-process__mobile-route-item--optional {
		grid-template-columns: 38px minmax(0, 1fr);
		padding-left: 0;
	}

	.home-v2-process__mobile-route-item--optional::before {
		left: 38px;
	}

	.home-v2-process__mobile-route-item--optional .home-v2-process__mobile-route-index {
		width: 38px;
		height: 30px;
	}

	.home-v2-process__mobile-route-item--optional .home-v2-process__mobile-route-title {
		padding-inline: 12px;
		font-size: 12px;
	}
}

@media (max-width: 48em) {
	.home-v2-projects .card-v2__title {
		display: block;
		overflow: visible;
		font-size: clamp(10px, 2.8vw, 11.5px);
		line-height: 1.18;
		letter-spacing: 0;
		color: rgba(255, 255, 255, 0.64);
		-webkit-line-clamp: unset;
		-webkit-box-orient: initial;
	}
}

@media (max-width: 22.5em) {
	.home-v2-projects .card-v2__info {
		padding: 11px 10px 12px;
	}

	.home-v2-projects .card-v2__price {
		font-size: 14px;
	}

	.home-v2-projects .card-v2__params {
		font-size: 11px;
		line-height: 1.2;
	}

	.home-v2-projects .card-v2__title {
		font-size: 10px;
	}
}

@media (min-width: 40em) and (max-width: 62em) {
	.home-v2-hero__container.container {
		padding-inline: 34px;
	}

	.home-v2-hero__media-stage .home-v2-hero__frame {
		border-radius: 28px;
		box-shadow: 0 18px 44px rgba(35, 27, 20, 0.09);
	}

	.home-v2-hero__overlay {
		align-items: stretch;
		padding: clamp(74px, 9vw, 92px) clamp(42px, 7vw, 68px) clamp(34px, 5vw, 44px);
		background:
			linear-gradient(90deg, rgba(18, 16, 14, 0.7) 0%, rgba(18, 16, 14, 0.46) 34%, rgba(18, 16, 14, 0.16) 66%, rgba(18, 16, 14, 0) 100%),
			linear-gradient(180deg, rgba(18, 16, 14, 0.18) 0%, rgba(18, 16, 14, 0) 28%, rgba(18, 16, 14, 0.28) 100%);
	}

	.home-v2-hero--media .home-v2-hero__content,
	.home-v2-hero__content {
		display: flex;
		flex-direction: column;
		max-width: 740px;
		justify-content: center;
		align-items: flex-start;
		gap: 24px;
	}

	.home-v2-hero__copy {
		display: flex;
		flex-direction: column;
		gap: 18px;
		max-width: 680px;
	}

	.home-v2-hero__title {
		max-width: 15ch;
		font-size: clamp(54px, 7vw, 72px);
		text-align: left;
	}

	.home-v2-hero__lead {
		align-self: flex-start;
		max-width: 36ch;
		margin-bottom: 0;
		font-size: clamp(18px, 2.35vw, 21px);
		text-align: left;
	}

	.home-v2-hero__actions {
		width: auto;
		align-items: center;
		justify-content: flex-start;
	}

	.home-v2-hero__btn {
		width: auto;
		max-width: 430px;
		padding-inline: clamp(34px, 5vw, 58px);
	}

	.home-v2-trust__container {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 14px;
	}

	.home-v2-trust__item {
		padding: 18px 18px 20px;
	}

	.home-v2-trust__value {
		font-size: clamp(30px, 4.4vw, 42px);
	}

	.home-v2-trust__label {
		font-size: 14px;
	}

	.home-v2-team__footer-btn,
	.home-v2-projects__footer-btn,
	.home-v2-process__action-btn {
		width: auto;
		min-width: min(100%, 360px);
		max-width: 420px;
		padding-inline: 42px;
	}

	.home-v2-team__footer,
	.home-v2-projects__footer,
	.home-v2-process__actions {
		align-items: center;
		justify-content: center;
	}

	.home-v2-terms--grid .home-v2-terms__card:last-child:nth-child(odd) {
		grid-column: 1 / -1;
	}

	.home-v2-terms--grid .home-v2-terms__card:last-child:nth-child(odd) .home-v2-terms__card-text {
		max-width: 58rem;
	}
}

@media (min-width: 48.01em) and (max-width: 62em) {
	.home-v2-process__layout {
		grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
		gap: 18px;
	}

	.home-v2-process__detail,
	.home-v2-process__map {
		min-height: 420px;
		padding: 24px;
	}

	.home-v2-process__map-shell {
		display: block;
		width: 100%;
		margin: auto;
	}

	.home-v2-process__map-lines,
	.home-v2-process__map-layer {
		display: block;
	}
}

@media (min-width: 46em) and (max-width: 62em) {
	.home-v2-process__layout {
		display: grid;
		grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
		gap: 18px;
		align-items: stretch;
	}

	.home-v2-process__left {
		min-height: 0;
	}

	.home-v2-process__detail-stack {
		min-height: 360px;
	}

	.home-v2-process__detail,
	.home-v2-process__map {
		min-height: 360px;
		padding: 22px;
		border-radius: 20px;
	}

	.home-v2-process__map {
		display: flex;
	}

	.home-v2-process__mobile-route {
		display: none;
	}

	.home-v2-process__detail-title {
		font-size: clamp(34px, 4.4vw, 42px);
	}

	.home-v2-process__detail-text {
		font-size: 15px;
		line-height: 1.42;
	}

	.home-v2-process__map-shell {
		width: 100%;
		margin: auto;
	}

	.home-v2-process__node {
		padding-inline: 10px;
	}

	.home-v2-process__node span {
		font-size: 11px;
		line-height: 1.12;
	}

	.home-v2-process__node--mortgage {
		width: 24%;
	}

	.home-v2-process__node--mortgage span {
		font-size: 8.5px;
	}
}

@media (min-width: 46em) and (max-width: 48em) {
	.home-v2-final-cta__card {
		gap: 28px;
		padding: 72px 34px;
	}

	.home-v2-final-cta__actions {
		align-items: center;
		width: auto;
		min-width: min(100%, 380px);
	}

	.home-v2-final-cta__btn {
		width: auto;
		min-width: min(100%, 380px);
		padding-inline: 38px;
	}

	.home-v2-footer__container {
		padding: 54px 34px 26px;
	}

	.home-v2-footer__cta {
		width: auto;
		min-width: min(100%, 260px);
	}

	.home-v2-footer__nav {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 30px 42px;
	}

	.home-v2-footer__group {
		border-top: 0;
	}

	.home-v2-footer__group-title {
		min-height: 0;
		margin-bottom: 16px;
		font-size: 26px;
		cursor: default;
	}

	.home-v2-footer__group[open] .home-v2-footer__group-title {
		margin-bottom: 16px;
	}

	.home-v2-footer__group-icon {
		display: none;
	}

	.home-v2-footer__links {
		display: flex;
		gap: 2px;
		padding-bottom: 0;
	}

	.home-v2-process__layout {
		grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
		gap: 18px;
	}

	.home-v2-process__left {
		grid-column: 1;
	}

	.home-v2-process__detail-stack {
		min-height: 360px;
	}

	.home-v2-process__detail {
		min-height: 360px;
	}

	.home-v2-process__map {
		display: none;
	}

	.home-v2-process__mobile-route {
		grid-column: 2;
		align-self: stretch;
		display: grid;
		gap: 8px;
		margin: 0;
		padding: 18px;
		border: 1px solid rgba(31, 29, 27, 0.08);
		border-radius: 20px;
		background: #fff;
		box-shadow: 0 18px 38px rgba(35, 27, 20, 0.06);
	}

	.home-v2-process__mobile-route-item {
		grid-template-columns: 38px minmax(0, 1fr);
		gap: 10px;
		min-height: 44px;
		padding-block: 4px;
	}

	.home-v2-process__mobile-route-index {
		width: 38px;
		height: 38px;
	}

	.home-v2-process__mobile-route-title {
		min-height: 40px;
		padding: 10px 14px;
		font-size: 13px;
	}

	.home-v2-process__mobile-route-item--optional {
		grid-template-columns: 38px minmax(0, 1fr);
		padding-left: 0;
	}

	.home-v2-process__mobile-route-item--optional::before {
		left: 37px;
	}

	.home-v2-process__mobile-route-item--optional .home-v2-process__mobile-route-title {
		font-size: 12px;
	}

	.home-v2-process__actions {
		justify-content: center;
	}
}

@media (min-width: 48.01em) and (max-width: 62em) {
	.home-v2-page {
		--home-v2-hero-media-transform: none;
	}

	.home-v2-hero__overlay {
		padding: clamp(50px, 6.4vw, 72px) clamp(48px, 7vw, 70px) clamp(32px, 4.6vw, 44px);
	}

	.home-v2-hero--media .home-v2-hero__content,
	.home-v2-hero__content {
		max-width: min(720px, 90%);
		gap: 18px;
	}

	.home-v2-hero__copy {
		gap: 14px;
		max-width: min(720px, 100%);
	}

	.home-v2-hero__title {
		max-width: min(12.8em, 680px);
		font-size: clamp(40px, 4.8vw, 50px);
		line-height: 1;
	}

	.home-v2-hero__materials {
		margin-top: 0;
	}

	.home-v2-hero__lead {
		max-width: 46ch;
	}
}

/* 2026-06-10 mobile video hero: stronger H1 without changing copy */
@media (max-width: 48em) {
	.home-v2-hero__overlay {
		padding-top: clamp(26px, 7.4vw, 38px);
	}

	.home-v2-hero__title {
		max-width: 9.8em;
		font-size: clamp(43px, 12.4vw, 58px);
		line-height: 1.02;
	}

	.home-v2-hero__title span,
	.home-v2-hero__title-mobile > span {
		white-space: normal;
	}

	.home-v2-hero__title-mobile span + span {
		margin-top: 0.04em;
	}

	.home-v2-hero__lead {
		width: 100%;
		max-width: 100%;
		font-size: clamp(16px, 4.35vw, 18px);
		line-height: 1.36;
	}
}

@media (max-width: 22.5em) {
	.home-v2-hero__title {
		max-width: 100%;
		font-size: clamp(39px, 12.4vw, 42px);
		line-height: 1.03;
	}

	.home-v2-hero__lead {
		font-size: clamp(14px, 4.35vw, 16px);
		line-height: 1.34;
	}
}

@media (max-width: 48em) {
	.home-v2-hero__title {
		max-width: 100%;
		font-size: clamp(39px, 11.2vw, 46px);
		line-height: 1.06;
	}

	.home-v2-hero__title-mobile .home-v2-hero__title-line {
		display: block;
		white-space: normal;
	}

	.home-v2-hero__title-mobile .home-v2-hero__title-line--narrow {
		display: none;
	}

		.home-v2-hero__btn {
			box-sizing: border-box;
			width: min(100%, 320px);
			max-width: calc(100vw - 56px);
			min-width: 0;
			min-height: 56px;
			padding-inline: 10px;
			font-size: 16px;
			line-height: 1.12;
			white-space: normal;
			overflow-wrap: normal;
		}

	.home-v2-hero__btn-mobile {
		white-space: normal;
	}
}

	@media (max-width: 359px) {
		.home-v2-hero__title {
			font-size: clamp(38px, 12vw, 40px);
			line-height: 1.05;
		}

		.home-v2-hero__btn {
			font-size: 15px;
		}

	.home-v2-hero__title-mobile .home-v2-hero__title-line--wide {
		display: none;
	}

	.home-v2-hero__title-mobile .home-v2-hero__title-line--narrow {
		display: block;
	}
}

@media (max-width: 48em) {
	.home-v2-hero {
		overflow-x: hidden;
	}

	.home-v2-hero__container.container {
		box-sizing: border-box;
		width: auto;
		max-width: 100%;
		margin-inline: 0;
		padding-inline: clamp(14px, 4.6vw, 18px);
	}

	.home-v2-hero__media-stage,
	.home-v2-hero__media-stage .home-v2-hero__frame,
	.home-v2-hero__frame {
		box-sizing: border-box;
		width: 100%;
		max-width: 100%;
	}
}

/* 2026-06-14 visual hierarchy correction pass */
.home-v2-team__card-name {
	font-size: clamp(24px, 1.9vw, 30px);
	line-height: 1.02;
}

.home-v2-team__card-role {
	margin-top: 7px;
	font-size: 15px;
	line-height: 1.35;
}

.home-v2-built__cards .card-v2__name {
	font-size: 11px;
	line-height: 1.15;
	color: rgba(255, 255, 255, 0.56);
}

.home-v2-built__cards .card-v2__params {
	font-size: 16px;
	line-height: 1.16;
	font-weight: 700;
	color: #fff;
}

.home-v2-built__cards .card-v2__title {
	font-size: 10px;
	color: rgba(255, 255, 255, 0.48);
}

.home-v2-projects .card-v2__price {
	font-size: clamp(22px, 1.7vw, 27px);
	line-height: 1.04;
}

.home-v2-projects .card-v2__params {
	font-size: clamp(16px, 1.1vw, 18px);
	line-height: 1.18;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.88);
}

.home-v2-projects .card-v2__title {
	margin-top: 7px;
	font-size: 10px;
	line-height: 1.18;
	letter-spacing: 0.03em;
	color: rgba(255, 255, 255, 0.46);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

@media (max-width: 48em) {
	.home-v2-built__map-stage,
	.home-v2-built__map {
		min-height: clamp(360px, 104vw, 430px);
	}

	.home-v2-built__cards .card-v2__info {
		padding: 16px 18px 18px;
	}

	.home-v2-built__cards .card-v2__name {
		margin-bottom: 7px;
		font-size: clamp(14px, 4.1vw, 17px);
	}

	.home-v2-built__cards .card-v2__params {
		margin-top: 0;
		font-size: clamp(18px, 5.3vw, 22px);
		line-height: 1.12;
	}

	.home-v2-team__card-name {
		font-size: clamp(20px, 6vw, 24px);
		line-height: 1.02;
	}

	.home-v2-team__card-role {
		font-size: clamp(13px, 3.6vw, 15px);
		line-height: 1.32;
	}

	.home-v2-projects .card-v2__info {
		display: flex;
		flex-direction: column;
		min-height: 142px;
		padding: 13px 12px 14px;
	}

	.home-v2-projects .card-v2__price {
		font-size: clamp(18px, 5.3vw, 22px);
		line-height: 1.04;
	}

	.home-v2-projects .card-v2__params {
		margin-top: 5px;
		font-size: clamp(13px, 3.75vw, 15px);
		line-height: 1.18;
	}

	.home-v2-projects .card-v2__title {
		margin-top: auto;
		padding-top: 8px;
		font-size: clamp(9px, 2.75vw, 10.5px);
		line-height: 1.16;
		letter-spacing: 0.02em;
	}

	.home-v2-projects__footer {
		align-items: stretch;
	}

	.home-v2-projects__footer-link {
		align-self: flex-start;
		margin-left: 0;
	}

	.home-v2-process__mobile-route {
		--home-v2-process-route-axis: 22px;
		overflow: hidden;
	}

	.home-v2-process__mobile-route-marker {
		left: calc(var(--home-v2-process-route-axis) - 5.5px);
	}

	.home-v2-process__mobile-route::before {
		background: repeating-linear-gradient(
			to bottom,
			rgba(82, 72, 63, 0.34) 0 5px,
			transparent 5px 10px
		);
	}

	.home-v2-process__mobile-route-item--optional {
		grid-template-columns: 44px minmax(0, 1fr);
		margin: -2px 0 2px;
		padding: 8px 0;
		padding-left: 0;
		position: relative;
	}

	.home-v2-process__mobile-route-item--optional::before {
		top: -10px;
		bottom: -10px;
		left: calc(var(--home-v2-process-route-axis) - 0.5px);
		z-index: 0;
		border-left: 0;
		background: repeating-linear-gradient(
			to bottom,
			rgba(126, 4, 15, 0.42) 0 4px,
			transparent 4px 8px
		);
	}

	.home-v2-process__mobile-route-item--optional::after {
		content: "";
		position: absolute;
		top: 50%;
		left: calc(var(--home-v2-process-route-axis) + 7px);
		z-index: 0;
		width: 24px;
		height: 1px;
		background: repeating-linear-gradient(
			to right,
			rgba(126, 4, 15, 0.42) 0 4px,
			transparent 4px 8px
		);
		transform: translateY(-0.5px);
	}

	.home-v2-process__mobile-route-item--optional .home-v2-process__mobile-route-index {
		width: 10px;
		height: 10px;
		margin-inline: auto;
		border: 1px solid rgba(126, 4, 15, 0.44);
		border-radius: 50%;
		background: #fff;
		font-size: 0;
	}

	.home-v2-process__mobile-route-item--optional .home-v2-process__mobile-route-title {
		min-height: 42px;
		padding: 10px 14px;
		border: 1px dashed rgba(126, 4, 15, 0.34);
		background: #fff;
		font-size: 14px;
		line-height: 1.15;
		color: var(--color-primary);
		position: relative;
		z-index: 1;
	}

	.home-v2-final-cta {
		display: none;
	}

	.home-v2-footer {
		margin-top: var(--home-v2-section-gap);
	}
}

@media (max-width: 22.5em) {
	.home-v2-built__map-stage,
	.home-v2-built__map {
		min-height: 350px;
	}

	.home-v2-team__card-name {
		font-size: 21px;
	}

	.home-v2-team__card-role {
		font-size: 12.5px;
	}

	.home-v2-projects .card-v2__info {
		min-height: 136px;
		padding: 12px 10px 13px;
	}

	.home-v2-projects .card-v2__price {
		font-size: 18px;
	}

	.home-v2-projects .card-v2__params {
		font-size: 13px;
	}
}

@media (min-width: 40em) and (max-width: 62em) {
	.home-v2-hero__content {
		gap: clamp(34px, 5vw, 54px);
	}

	.home-v2-hero__copy {
		gap: clamp(18px, 3vw, 28px);
	}

	.home-v2-hero__actions {
		margin-top: 6px;
	}

	.home-v2-built__cards .card-v2__params {
		font-size: clamp(15px, 2.1vw, 18px);
	}

	.home-v2-projects .card-v2__price {
		font-size: clamp(20px, 2.4vw, 24px);
	}

	.home-v2-projects .card-v2__params {
		font-size: clamp(14px, 1.65vw, 16px);
	}

	.home-v2-process__mobile-route-title {
		font-size: 14px;
	}

	.home-v2-process__mobile-route-item--optional .home-v2-process__mobile-route-title {
		font-size: 13px;
	}
}

@media (min-width: 46em) and (max-width: 62em) {
	.home-v2-process__layout {
		grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
		gap: 18px;
	}

	.home-v2-process__map {
		display: flex;
		min-height: 360px;
		padding: 22px;
	}

	.home-v2-process__map-shell {
		display: block;
		width: 100%;
		margin: auto;
	}

	.home-v2-process__map-lines,
	.home-v2-process__map-layer {
		display: block;
	}

	.home-v2-process__mobile-route {
		display: none;
	}

	.home-v2-process__node span {
		font-size: 11px;
		line-height: 1.12;
	}

	.home-v2-process__node--mortgage {
		width: 24%;
	}

	.home-v2-process__node--mortgage span {
		font-size: 8.5px;
	}
}

@media (min-width: 48.01em) {
	.home-v2-footer__group {
		display: block;
	}

	.home-v2-footer__links {
		display: flex;
	}
}

/* 2026-06-14 project card text fit correction */
@media (max-width: 48em) {
	.home-v2-projects__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 14px 10px;
	}

	.home-v2-projects .card-v2__info {
		min-height: 120px;
		padding: 12px 10px 12px;
	}

	.home-v2-projects .card-v2__price {
		font-size: clamp(16px, 4.2vw, 18px);
		line-height: 1.04;
		white-space: nowrap;
	}

	.home-v2-projects .card-v2__params {
		margin-top: 5px;
		font-size: clamp(12px, 3.3vw, 13.5px);
		line-height: 1.18;
		white-space: nowrap;
	}

	.home-v2-projects .card-v2__title {
		display: block;
		margin-top: auto;
		padding-top: 7px;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
		font-size: clamp(8.5px, 2.45vw, 9.5px);
		line-height: 1.16;
	}
}

@media (max-width: 21.25em) {
	.home-v2-projects__grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.home-v2-projects .card-v2__info {
		min-height: 110px;
		padding: 14px 16px 15px;
	}

	.home-v2-projects .card-v2__price {
		font-size: 22px;
	}

	.home-v2-projects .card-v2__params {
		font-size: 15px;
	}

	.home-v2-projects .card-v2__title {
		font-size: 10px;
	}
}

@media (min-width: 46em) and (max-width: 62em) {
	.home-v2-projects__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.home-v2-projects .card-v2__info {
		min-height: 124px;
		padding: 14px 16px 15px;
	}

	.home-v2-projects .card-v2__price {
		font-size: 22px;
		white-space: nowrap;
	}

	.home-v2-projects .card-v2__params {
		font-size: 15px;
		white-space: nowrap;
	}

	.home-v2-projects .card-v2__title {
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
		font-size: 10px;
	}
}

@media (min-width: 46em) and (max-width: 56em) {
	.home-v2-process__layout {
		grid-template-columns: minmax(0, 1fr);
		gap: 20px;
	}

	.home-v2-process__left {
		grid-column: 1;
	}

	.home-v2-process__detail-stack {
		min-height: 300px;
	}

	.home-v2-process__detail {
		min-height: 300px;
	}

	.home-v2-process__map {
		min-height: 430px;
	}

	.home-v2-process__node span {
		font-size: 13px;
	}

	.home-v2-process__node--mortgage span {
		font-size: 10px;
	}
}

/* 2026-06-14 route and project card correction */
.home-v2-process__map-lines .home-v2-process__map-mortgage-branch {
	stroke: rgba(126, 4, 15, 0.56);
	stroke-width: 1.7;
	stroke-dasharray: 4 6;
	stroke-linecap: round;
	vector-effect: non-scaling-stroke;
}

.home-v2-process__node--mortgage::before {
	display: none;
}

@media (max-width: 48em) {
	.home-v2-projects__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 14px 10px;
	}

	.home-v2-projects .card-v2__image img {
		aspect-ratio: 1.18 / 1;
	}

	.home-v2-projects .card-v2__info {
		min-height: 94px;
		padding: 11px 10px 12px;
	}

	.home-v2-projects .card-v2__price {
		font-size: clamp(16px, 4.35vw, 18px);
		line-height: 1.04;
		white-space: nowrap;
	}

	.home-v2-projects .card-v2__params {
		margin-top: 5px;
		font-size: clamp(11.5px, 3.2vw, 13.5px);
		line-height: 1.14;
		white-space: nowrap;
	}

	.home-v2-projects .card-v2__title {
		display: block;
		margin-top: 8px;
		padding-top: 0;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
		font-size: clamp(9px, 2.5vw, 10px);
		line-height: 1.12;
		letter-spacing: 0.02em;
	}

	.home-v2-projects__footer {
		align-items: center;
	}

	.home-v2-projects__footer-btn {
		width: 100%;
	}

	.home-v2-projects__footer-link {
		justify-content: space-between;
		align-self: stretch;
		width: 100%;
		min-height: 52px;
		margin-inline: 0;
		padding: 0 8px 0 14px;
		border: 1px solid rgba(56, 43, 36, 0.12);
		border-radius: 999px;
		background: #fff;
		font-size: 16px;
		line-height: 1.15;
		font-weight: 600;
	}

	.home-v2-projects__footer-link::after {
		flex: 0 0 36px;
		width: 36px;
		height: 36px;
	}

	.home-v2-process__mobile-route::before {
		left: calc(var(--home-v2-process-route-axis) - 0.5px);
		background: rgba(82, 72, 63, 0.28);
	}

	.home-v2-process__mobile-route-item--optional {
		grid-template-columns: 44px minmax(0, 1fr);
		margin: -2px 0 2px;
		padding: 8px 0;
	}

	.home-v2-process__mobile-route-item--optional::before {
		display: none;
	}

	.home-v2-process__mobile-route-item--optional::after {
		content: "";
		position: absolute;
		top: 50%;
		left: calc(var(--home-v2-process-route-axis) + 1px);
		z-index: 0;
		width: 34px;
		height: 1px;
		background: repeating-linear-gradient(
			to right,
			rgba(126, 4, 15, 0.44) 0 4px,
			transparent 4px 8px
		);
		transform: translateY(-0.5px);
	}

	.home-v2-process__mobile-route-item--optional .home-v2-process__mobile-route-index {
		width: 0;
		height: 0;
		margin-inline: auto;
		border: 0;
		border-radius: 0;
		background: transparent;
		font-size: 0;
	}

	.home-v2-process__mobile-route-item--optional .home-v2-process__mobile-route-title {
		position: relative;
		z-index: 1;
		min-height: 42px;
		padding: 10px 14px;
		border: 1px dashed rgba(126, 4, 15, 0.34);
		background: #fff;
		font-size: 14px;
		line-height: 1.15;
		color: var(--color-primary);
	}

	.home-v2-final-cta {
		display: block;
	}

	.home-v2-footer__cta {
		display: none;
	}
}

@media (max-width: 21.25em) {
	.home-v2-projects__grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.home-v2-projects .card-v2__info {
		min-height: 102px;
		padding: 14px 16px 15px;
	}

	.home-v2-projects .card-v2__price {
		font-size: 22px;
	}

	.home-v2-projects .card-v2__params {
		font-size: 15px;
	}

	.home-v2-projects .card-v2__title {
		font-size: 10px;
	}
}

@media (min-width: 46em) and (max-width: 62em) {
	.home-v2-projects__grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 16px 14px;
	}

	.home-v2-projects .card-v2__info {
		min-height: 102px;
		padding: 12px 10px 13px;
	}

	.home-v2-projects .card-v2__price {
		font-size: clamp(16px, 2.15vw, 19px);
		line-height: 1.04;
		white-space: nowrap;
	}

	.home-v2-projects .card-v2__params {
		margin-top: 5px;
		font-size: clamp(11.5px, 1.55vw, 13.5px);
		line-height: 1.14;
		white-space: nowrap;
	}

	.home-v2-projects .card-v2__title {
		display: block;
		margin-top: 8px;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
		font-size: 9px;
		line-height: 1.12;
	}

	.home-v2-projects__footer {
		align-items: center;
	}

	.home-v2-projects__footer-btn {
		width: min(360px, 100%);
	}

	.home-v2-projects__footer-link {
		justify-content: space-between;
		align-self: stretch;
		width: min(360px, 100%);
		min-height: 52px;
		margin-inline: auto;
		padding: 0 8px 0 16px;
		border: 1px solid rgba(56, 43, 36, 0.12);
		border-radius: 999px;
		background: #fff;
		font-size: 16px;
		line-height: 1.15;
		font-weight: 600;
	}

	.home-v2-projects__footer-link::after {
		flex: 0 0 36px;
		width: 36px;
		height: 36px;
	}
}

@media (min-width: 46em) and (max-width: 56em) {
	.home-v2-hero__title {
		max-width: 10.8em;
		font-size: clamp(58px, 7.3vw, 70px);
		line-height: 1.03;
	}
}

@media (min-width: 48em) and (max-width: 64em) {
	.home-v2-hero__media-stage .home-v2-hero__frame,
	.home-v2-hero__frame {
		min-height: clamp(520px, 68vw, 600px);
	}

	.home-v2-hero__content {
		justify-content: center;
		gap: clamp(26px, 3.6vw, 42px);
	}

	.home-v2-hero__copy {
		gap: clamp(14px, 2.2vw, 22px);
	}

	.home-v2-hero__title {
		max-width: 12.6em;
		font-size: clamp(50px, 6.25vw, 60px);
		line-height: 1.04;
	}

	.home-v2-built__map-stage,
	.home-v2-built__map {
		min-height: clamp(400px, 56vw, 460px);
	}

	.home-v2-built__footer {
		justify-content: center;
	}

	.home-v2-built__footer-btn {
		width: min(360px, 100%);
	}
}

@media (min-width: 48.01em) and (max-width: 56em) {
	.home-v2-hero__title .home-v2-hero__title-desktop {
		display: none;
	}

	.home-v2-hero__title .home-v2-hero__title-mobile {
		display: block;
	}

	.home-v2-hero__title-mobile .home-v2-hero__title-line--wide {
		display: block;
		white-space: nowrap;
	}

	.home-v2-hero__title-mobile .home-v2-hero__title-line--narrow {
		display: none;
	}

	.home-v2-hero__title-mobile span + span {
		margin-top: 0.02em;
		font-size: inherit;
		line-height: inherit;
	}
}

/* 2026-06-16 process tablet route fit */
@media (min-width: 46em) and (max-width: 74.99em) {
	.home-v2-process__layout {
		grid-template-columns: minmax(0, 1fr);
		gap: 22px;
	}

	.home-v2-process__left {
		grid-column: 1;
	}

	.home-v2-process__detail-stack {
		min-height: 300px;
	}

	.home-v2-process__detail {
		min-height: 300px;
	}

	.home-v2-process__map {
		display: flex;
		min-height: clamp(420px, 46vw, 520px);
		padding: clamp(24px, 3.2vw, 34px);
	}

	.home-v2-process__map-shell {
		display: block;
		width: min(100%, 820px);
		margin: auto;
	}

	.home-v2-process__map-lines,
	.home-v2-process__map-layer {
		display: block;
	}

	.home-v2-process__mobile-route {
		display: none;
	}

	.home-v2-process__node span {
		font-size: clamp(12px, 1.45vw, 14px);
		line-height: 1.14;
	}

	.home-v2-process__node--mortgage {
		width: 19%;
	}

	.home-v2-process__node--mortgage span {
		font-size: clamp(9px, 1.05vw, 10.5px);
	}
}

@media (min-width: 48.01em) and (max-width: 64em) {
	.home-v2-editorial__group {
		gap: 18px;
		padding: 24px;
	}

	.home-v2-editorial__list {
		gap: 12px;
	}

	.home-v2-editorial__card {
		grid-template-columns: 122px minmax(0, 1fr);
		min-height: 118px;
	}

	.home-v2-editorial__card-media,
	.home-v2-editorial__card-image {
		height: 100%;
		min-height: 118px;
		max-height: 132px;
	}

	.home-v2-editorial__card-body {
		justify-content: center;
		gap: 0;
		padding: 14px 16px;
	}

	.home-v2-editorial__card-title {
		display: -webkit-box;
		overflow: hidden;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 3;
		font-size: 16px;
		line-height: 1.14;
	}

	.home-v2-editorial__card-excerpt {
		display: none;
	}
}

/* 2026-06-16 mobile process route alignment */
@media (max-width: 48em) {
	.home-v2-process__mobile-route {
		--home-v2-process-route-center-x: 39px;
		--home-v2-process-route-branch-x: 21.5px;
	}

	.home-v2-process__mobile-route::before {
		left: calc(var(--home-v2-process-route-center-x) - 0.5px);
	}

	.home-v2-process__mobile-route-marker {
		left: calc(var(--home-v2-process-route-center-x) - 5.5px);
	}

	.home-v2-process__mobile-route-item--optional::after {
		left: var(--home-v2-process-route-branch-x);
		width: 34px;
	}
}

@media (max-width: 22.5em) {
	.home-v2-process__mobile-route {
		--home-v2-process-route-center-x: 32px;
		--home-v2-process-route-branch-x: 18.5px;
	}
}

/* 2026-06-16 tablet footer accordion */
@media (min-width: 46em) and (max-width: 74.99em) {
	.home-v2-footer__container {
		padding: clamp(60px, 7vw, 76px) clamp(42px, 6vw, 64px) 30px;
	}

	.home-v2-footer__top {
		grid-template-columns: 1fr;
		gap: 38px;
		padding-bottom: 36px;
	}

	.home-v2-footer__brand {
		max-width: 760px;
	}

	.home-v2-footer__contacts {
		flex-direction: row;
		flex-wrap: wrap;
		align-items: center;
		gap: 12px 22px;
	}

	.home-v2-footer__cta {
		width: auto;
		min-width: 260px;
	}

	.home-v2-footer__nav {
		display: grid;
		grid-template-columns: 1fr;
		gap: 0;
	}

	.home-v2-footer__group {
		border-top: 1px solid rgba(255, 255, 255, 0.18);
	}

	.home-v2-footer__group:first-child {
		border-top: 0;
	}

	.home-v2-footer__group-title {
		min-height: 62px;
		margin-bottom: 0;
		font-size: 28px;
		cursor: pointer;
		-webkit-tap-highlight-color: transparent;
	}

	.home-v2-footer__group[open] .home-v2-footer__group-title {
		margin-bottom: 8px;
	}

	.home-v2-footer__group-icon {
		position: relative;
		display: block;
		flex: 0 0 auto;
		width: 30px;
		height: 30px;
		border: 1px solid rgba(255, 255, 255, 0.26);
		border-radius: 50%;
	}

	.home-v2-footer__group-icon::before,
	.home-v2-footer__group-icon::after {
		content: "";
		position: absolute;
		top: 50%;
		left: 50%;
		width: 13px;
		height: 1.5px;
		border-radius: 999px;
		background: rgba(255, 255, 255, 0.9);
		transform: translate(-50%, -50%);
	}

	.home-v2-footer__group-icon::after {
		transform: translate(-50%, -50%) rotate(90deg);
		transition: transform 180ms ease, opacity 180ms ease;
	}

	.home-v2-footer__group[open] .home-v2-footer__group-icon::after {
		opacity: 0;
		transform: translate(-50%, -50%) rotate(0deg);
	}

	.home-v2-footer__links {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0 30px;
		padding-bottom: 20px;
	}

	.home-v2-footer__links a {
		min-height: 38px;
		font-size: 15px;
	}

	.home-v2-footer__bottom {
		display: grid;
		grid-template-columns: minmax(0, 1fr) auto;
		align-items: center;
		gap: 22px 34px;
		padding-top: 26px;
	}

	.home-v2-footer__legal-wrap {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		gap: 10px 24px;
	}

	.home-v2-footer .footer__legal {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		gap: 10px 20px;
	}

	.home-v2-footer .footer__socials {
		width: auto;
		justify-content: flex-end;
		gap: 8px;
	}
}

@media (min-width: 46em) and (max-width: 62em) {
	.home-v2-footer__bottom {
		grid-template-columns: minmax(0, 1fr) auto;
	}

	.home-v2-footer .footer__socials {
		justify-content: flex-end;
	}
}

/* 2026-06-16 tablet project card black area */
@media (min-width: 46em) and (max-width: 62em) {
	.home-v2-projects .card-v2__info {
		min-height: 0;
		padding: 12px 10px 12px;
	}

	.home-v2-projects .card-v2__price {
		margin-bottom: 6px;
	}

	.home-v2-projects .card-v2__params {
		margin-top: 0;
		margin-bottom: 0;
	}

	.home-v2-projects .card-v2__title {
		margin-top: 6px;
		padding-top: 0;
	}
}

/* 2026-06-16 tablet header breakpoint */
@media (min-width: 62.01em) and (max-width: 74.99em) {
	html.home-v2-menu-open,
	html.home-v2-menu-open body {
		overflow: hidden;
	}

	.home-v2-header__container {
		min-height: 70px;
		padding: 12px clamp(24px, 4vw, 44px);
	}

	.home-v2-header__panel {
		display: none;
	}

	.home-v2-header__logo {
		width: 126px;
		height: 46px;
	}

	.home-v2-header__burger {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 46px;
		height: 46px;
		margin-left: auto;
		border: 1px solid rgba(56, 43, 36, 0.14);
		border-radius: 50%;
		background: #fff;
		color: #382b24;
		fill: currentColor;
		stroke: currentColor;
	}

	.home-v2-header.is-menu-open {
		position: fixed;
		inset: 0 0 auto 0;
		z-index: 100;
		background: #fff;
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
	}

	.home-v2-header.is-menu-open .home-v2-header__burger {
		position: fixed;
		top: max(18px, env(safe-area-inset-top));
		right: max(24px, env(safe-area-inset-right));
		z-index: 103;
		width: 52px;
		height: 52px;
		margin-left: 0;
		border-color: rgba(56, 43, 36, 0.14);
		background: #fff;
		color: #382b24;
		fill: currentColor;
		stroke: currentColor;
	}

	.home-v2-header.is-menu-open .home-v2-header__panel {
		position: fixed;
		inset: 0;
		z-index: 101;
		display: flex;
		flex-direction: column;
		min-height: 100svh;
		padding: 96px clamp(42px, 7vw, 76px) 28px;
		background: #fff;
		overflow-y: auto;
	}

	.home-v2-header.is-menu-open .home-v2-header__nav {
		display: block;
		flex: 0 0 auto;
	}

	.home-v2-header.is-menu-open .home-v2-header__menu {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
		gap: 0;
		width: 100%;
	}

	.home-v2-header.is-menu-open .home-v2-header__menu-item {
		border-bottom: 1px solid rgba(56, 43, 36, 0.1);
	}

	.home-v2-header.is-menu-open .home-v2-header__menu a {
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		min-height: 64px;
		padding: 0;
		border: 0;
		background: transparent;
		font-size: 32px;
		line-height: 1;
		font-weight: 700;
		letter-spacing: 0;
		color: #1f1d1b !important;
		text-shadow: none;
		white-space: nowrap;
	}

	.home-v2-header.is-menu-open .home-v2-header__menu a::after {
		position: static;
		display: block;
		flex: 0 0 32px;
		width: 32px;
		height: 32px;
		border: 1px solid rgba(56, 43, 36, 0.14);
		border-radius: 50%;
		background:
			url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 14 14' fill='none'%3E%3Cpath d='M3 7H11' stroke='%23382b24' stroke-width='1.4'/%3E%3Cpath d='M7 3L11 7L7 11' stroke='%23382b24' stroke-width='1.4'/%3E%3C/svg%3E")
			center/12px 12px no-repeat;
		opacity: 1;
		transform: none;
	}

	.home-v2-header.is-menu-open .home-v2-header__meta {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 12px;
		width: 100%;
		margin-top: auto;
		padding-top: 28px;
	}

	.home-v2-header.is-menu-open .home-v2-header__search,
	.home-v2-header.is-menu-open .home-v2-header__phone-link {
		display: flex;
		align-items: center;
		justify-content: flex-start;
		width: 100%;
		min-height: 54px;
		padding: 0 18px;
		border: 1px solid rgba(56, 43, 36, 0.12);
		border-radius: 999px;
		background: #fff;
		font-size: 16px;
		font-weight: 600;
		color: #382b24 !important;
		fill: currentColor;
		stroke: currentColor;
		text-shadow: none;
	}

	.home-v2-header.is-menu-open .home-v2-header__search {
		margin-left: 0;
	}

	.home-v2-header.is-menu-open .home-v2-header__search::after {
		content: "Поиск";
		margin-left: 10px;
	}

	.home-v2-header.is-menu-open .home-v2-header__phone {
		width: 100%;
	}

	.home-v2-header.is-menu-open .home-v2-header__socials {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 16px;
		width: 100%;
		padding-top: 16px;
		color: #382b24;
		text-shadow: none;
	}

	.home-v2-header.is-menu-open .home-v2-header__menu-cta {
		display: flex;
		align-self: stretch;
		min-height: 56px;
		margin-top: 20px;
		border-radius: 10px;
	}
}
