:root {
	--blue: #1565d8;
	--blue-dark: #0d3f8f;
	--blue-soft: #eaf2ff;
	--yellow: #ffd43b;
	--yellow-dark: #f2bd00;
	--ink: #172033;
	--muted: #697386;
	--line: #e5e9f0;
	--soft: #f5f7fa;
	--white: #fff;
	--green: #159a64;
	--radius: 18px;
	--shadow: 0 14px 40px rgba(26, 42, 72, .1);
	--container: 1240px;
}

body {
	background: var(--white);
	color: var(--ink);
	font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
	font-size: 16px;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}

body.is-locked {
	overflow: hidden;
}

button,
input,
select,
textarea {
	font: inherit;
}

button,
a {
	-webkit-tap-highlight-color: transparent;
}

a {
	color: inherit;
	text-decoration: none;
}

button {
	color: inherit;
}

h1,
h2,
h3,
p {
	margin-top: 0;
}

.container {
	width: min(calc(100% - 40px), var(--container));
	margin-inline: auto;
}

.utility-bar {
	position: relative;
	z-index: 60;
	border-bottom: 1px solid #edf0f4;
	background: #fff;
	color: #556074;
	font-size: 13px;
}

.utility-bar__inner {
	display: flex;
	align-items: center;
	min-height: 38px;
	gap: 24px;
}

.utility-bar__spacer {
	flex: 1;
}

.utility-link {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 5px 0;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.utility-link:hover {
	color: var(--blue);
}

.utility-link svg,
.property-card__address svg {
	width: 16px;
	height: 16px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
}

.utility-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--green);
	box-shadow: 0 0 0 4px rgba(21, 154, 100, .1);
}

.currency-toggle {
	display: flex;
	padding: 2px;
	border-radius: 7px;
	background: var(--soft);
}

.currency-toggle button {
	padding: 4px 7px;
	border: 0;
	border-radius: 5px;
	background: transparent;
	color: #788296;
	font-size: 11px;
	font-weight: 700;
	cursor: pointer;
}

.currency-toggle button.is-active {
	background: #fff;
	color: var(--blue);
	box-shadow: 0 1px 4px rgba(24, 39, 75, .12);
}

.favorite-trigger svg {
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
}

.favorite-count {
	display: grid;
	place-items: center;
	min-width: 18px;
	height: 18px;
	padding: 0 5px;
	border-radius: 99px;
	background: var(--yellow);
	color: var(--ink);
	font-size: 10px;
	font-weight: 800;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	border-bottom: 1px solid rgba(225, 229, 237, .9);
	background: rgba(255, 255, 255, .96);
	backdrop-filter: blur(16px);
}

.site-header__inner {
	display: flex;
	align-items: center;
	min-height: 74px;
	gap: 32px;
}

.brand {
	display: grid;
	grid-template-columns: 28px auto;
	grid-template-rows: 28px 12px;
	align-items: center;
	flex: 0 0 auto;
	color: var(--ink);
}

.brand__mark {
	position: relative;
	display: block;
	grid-row: 1 / 3;
	width: 25px;
	height: 30px;
	border-radius: 14px 14px 14px 3px;
	background: var(--blue);
	transform: rotate(3deg);
}

.brand__mark::after {
	content: "";
	position: absolute;
	inset: 8px 7px 7px;
	border-radius: 5px 5px 2px 2px;
	background: #fff;
	clip-path: polygon(50% 0, 100% 42%, 84% 42%, 84% 100%, 16% 100%, 16% 42%, 0 42%);
}

.brand__mark i {
	display: none;
}

.brand__word {
	font-size: 25px;
	font-weight: 900;
	letter-spacing: -.9px;
	line-height: 1;
}

.brand small {
	color: #7c8493;
	font-size: 8.5px;
	letter-spacing: .1px;
	line-height: 1;
}

.custom-logo-link {
	grid-column: 1 / 3;
	grid-row: 1 / 3;
}

.custom-logo {
	width: auto;
	max-height: 48px;
}

.desktop-nav {
	display: flex;
	align-items: stretch;
	align-self: stretch;
	gap: 25px;
}

.desktop-nav > a,
.nav-item > a {
	display: flex;
	align-items: center;
	gap: 5px;
	height: 100%;
	font-size: 14px;
	font-weight: 650;
	white-space: nowrap;
}

.desktop-nav > a:hover,
.nav-item > a:hover {
	color: var(--blue);
}

.nav-item {
	position: relative;
}

.mega-menu {
	position: absolute;
	top: calc(100% - 1px);
	left: -200px;
	display: grid;
	grid-template-columns: 1fr 1fr 250px;
	gap: 36px;
	width: 770px;
	padding: 28px;
	border: 1px solid var(--line);
	border-radius: 0 0 18px 18px;
	background: #fff;
	box-shadow: var(--shadow);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: .18s ease;
}

.has-mega:hover .mega-menu,
.has-mega:focus-within .mega-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.mega-menu > div:not(.mega-menu__promo) {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.mega-menu strong {
	margin-bottom: 5px;
	font-size: 13px;
}

.mega-menu a {
	color: #626d80;
	font-size: 13px;
}

.mega-menu a:hover {
	color: var(--blue);
}

.mega-menu__promo {
	align-self: stretch;
	padding: 22px;
	border-radius: 14px;
	background: var(--yellow);
}

.mega-menu__promo span {
	display: block;
	color: var(--blue-dark);
	font-size: 46px;
	font-weight: 900;
	line-height: 1;
}

.mega-menu__promo strong {
	display: block;
	margin-top: 10px;
}

.mega-menu__promo p {
	margin: 6px 0 0;
	font-size: 12px;
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-left: auto;
}

.header-phone {
	font-size: 13px;
	font-weight: 700;
	white-space: nowrap;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 46px;
	padding: 0 21px;
	border: 1px solid transparent;
	border-radius: 11px;
	font-size: 14px;
	font-weight: 750;
	line-height: 1.2;
	cursor: pointer;
	transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
}

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

.button--primary {
	background: var(--yellow);
	color: #202536;
	box-shadow: 0 8px 20px rgba(242, 189, 0, .22);
}

.button--primary:hover {
	background: #ffdc5b;
}

.button--outline {
	border-color: var(--line);
	background: #fff;
}

.button--outline:hover {
	border-color: var(--blue);
	color: var(--blue);
}

.button--dark {
	background: var(--ink);
	color: #fff;
}

.button--light {
	background: #fff;
	color: var(--ink);
}

.button--accent {
	background: var(--yellow);
	color: var(--ink);
}

.button--messenger {
	border-color: #bfd3f5;
	background: var(--blue-soft);
	color: var(--blue);
}

.button--wide {
	width: 100%;
}

.menu-button {
	display: none;
	width: 42px;
	height: 42px;
	padding: 10px;
	border: 1px solid var(--line);
	border-radius: 10px;
	background: #fff;
}

.menu-button span {
	display: block;
	height: 2px;
	margin: 4px 0;
	border-radius: 2px;
	background: var(--ink);
}

.mobile-panel {
	display: none;
	border-top: 1px solid var(--line);
}

.hero {
	position: relative;
	min-height: 640px;
	overflow: hidden;
	background: #254c75;
	color: #fff;
}

.hero__image,
.hero__veil {
	position: absolute;
	inset: 0;
}

.hero__image {
	background: url("../images/tashkent-hero.png") center / cover no-repeat;
	transform: scale(1.01);
}

.hero__veil {
	background: linear-gradient(90deg, rgba(11, 28, 53, .88) 0%, rgba(16, 39, 68, .67) 43%, rgba(15, 36, 63, .15) 78%), linear-gradient(0deg, rgba(8, 28, 52, .48), transparent 55%);
}

.hero__content {
	position: relative;
	z-index: 2;
	padding-top: 78px;
	padding-bottom: 58px;
}

.hero__topline,
.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	color: var(--blue);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 1.4px;
	text-transform: uppercase;
}

.hero__topline {
	color: #fff;
}

.hero__topline span {
	display: block;
	width: 28px;
	height: 3px;
	border-radius: 9px;
	background: var(--yellow);
}

.hero h1 {
	max-width: 760px;
	margin: 17px 0 18px;
	font-size: clamp(44px, 5.2vw, 72px);
	font-weight: 800;
	letter-spacing: -3.3px;
	line-height: .99;
}

.hero__content > p {
	max-width: 650px;
	margin-bottom: 34px;
	color: rgba(255, 255, 255, .85);
	font-size: 18px;
}

.search-shell {
	max-width: 1120px;
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 22px 50px rgba(2, 17, 39, .3);
	color: var(--ink);
}

.search-tabs {
	display: flex;
	gap: 4px;
	padding: 9px 11px 0;
	border-bottom: 1px solid var(--line);
}

.search-tabs button {
	position: relative;
	padding: 10px 14px 13px;
	border: 0;
	background: transparent;
	color: #657085;
	font-size: 13px;
	font-weight: 750;
	cursor: pointer;
}

.search-tabs button span {
	margin-left: 4px;
	color: #a2a9b5;
	font-size: 10px;
}

.search-tabs button.is-active {
	color: var(--blue);
}

.search-tabs button.is-active::after {
	content: "";
	position: absolute;
	right: 12px;
	bottom: -1px;
	left: 12px;
	height: 3px;
	border-radius: 5px 5px 0 0;
	background: var(--blue);
}

.hero-search {
	position: relative;
	display: grid;
	grid-template-columns: 1.35fr .9fr 1.35fr auto auto;
	align-items: stretch;
	gap: 0;
	padding: 12px;
}

.search-field {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-width: 0;
	padding: 4px 18px;
	border-right: 1px solid var(--line);
}

.search-field span {
	margin-bottom: 3px;
	color: #8a93a3;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
}

.search-field strong,
.search-field select,
.search-field input {
	min-width: 0;
	border: 0;
	outline: 0;
	background: transparent;
	color: var(--ink);
	font-size: 13px;
	font-style: normal;
	font-weight: 650;
}

.search-field select {
	width: 100%;
}

.search-field--price > div {
	display: flex;
	align-items: center;
	gap: 7px;
}

.search-field--price input {
	width: 47%;
}

.search-field--price i {
	width: 10px;
	height: 1px;
	background: #aeb5c0;
}

.filter-button {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 0 14px;
	border: 0;
	background: #fff;
	color: #586477;
	font-size: 12px;
	font-weight: 700;
	cursor: pointer;
}

.filter-button svg,
.search-submit svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
}

.search-submit {
	min-width: 125px;
}

.advanced-search {
	position: absolute;
	top: calc(100% - 4px);
	right: 12px;
	left: 12px;
	z-index: 3;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	padding: 18px;
	border-radius: 0 0 14px 14px;
	background: #fff;
	box-shadow: 0 18px 30px rgba(17, 32, 58, .18);
}

.advanced-search[hidden] {
	display: none;
}

.advanced-search label {
	color: #7a8496;
	font-size: 11px;
}

.advanced-search input,
.advanced-search select {
	width: 100%;
	height: 42px;
	margin-top: 5px;
	padding: 0 10px;
	border: 1px solid var(--line);
	border-radius: 8px;
}

.quick-links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin-top: 18px;
	font-size: 12px;
}

.quick-links > span {
	color: rgba(255, 255, 255, .68);
}

.quick-links a {
	padding: 7px 12px;
	border: 1px solid rgba(255, 255, 255, .28);
	border-radius: 99px;
	background: rgba(255, 255, 255, .1);
	backdrop-filter: blur(8px);
}

.quick-links a:hover {
	border-color: var(--yellow);
	background: rgba(255, 212, 59, .15);
}

.trust-strip {
	border-bottom: 1px solid var(--line);
	background: #fff;
}

.trust-strip__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

.trust-strip__grid > div {
	display: flex;
	flex-direction: column;
	padding: 24px 26px;
	border-right: 1px solid var(--line);
}

.trust-strip__grid > div:first-child {
	padding-left: 0;
}

.trust-strip__grid > div:last-child {
	border-right: 0;
}

.trust-strip strong {
	font-size: 22px;
	line-height: 1.2;
}

.trust-strip span {
	color: var(--muted);
	font-size: 12px;
}

.section {
	padding: 82px 0;
}

.section--soft {
	background: var(--soft);
}

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

.section-heading h2,
.mortgage-copy h2,
.consult-card h2 {
	margin: 7px 0 0;
	font-size: clamp(31px, 3.4vw, 44px);
	letter-spacing: -1.8px;
	line-height: 1.07;
}

.arrow-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--blue);
	font-size: 13px;
	font-weight: 750;
	white-space: nowrap;
}

.arrow-link span {
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border: 1px solid #cfdcf0;
	border-radius: 50%;
}

.pill-tabs,
.category-switch {
	display: flex;
	gap: 7px;
	margin-bottom: 22px;
}

.pill-tabs button,
.category-switch button {
	padding: 9px 14px;
	border: 1px solid var(--line);
	border-radius: 99px;
	background: #fff;
	color: var(--muted);
	font-size: 12px;
	font-weight: 700;
	cursor: pointer;
}

.pill-tabs button.is-active,
.category-switch button.is-active {
	border-color: var(--ink);
	background: var(--ink);
	color: #fff;
}

.property-scroller,
.property-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 19px;
}

.property-card {
	position: relative;
	min-width: 0;
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #fff;
	transition: transform .2s ease, box-shadow .2s ease;
}

.property-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow);
}

.property-card__media {
	position: relative;
	display: block;
	aspect-ratio: 1.37 / 1;
	overflow: hidden;
	background: #e8edf3;
}

.property-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .5s ease;
}

.property-card:hover .property-card__media img {
	transform: scale(1.035);
}

.property-card__badge,
.property-card__counter {
	position: absolute;
	z-index: 2;
	top: 12px;
	padding: 5px 8px;
	border-radius: 7px;
	font-size: 9px;
	font-weight: 800;
}

.property-card__badge {
	left: 12px;
	background: var(--yellow);
}

.property-card__counter {
	right: 12px;
	background: rgba(20, 27, 42, .65);
	color: #fff;
}

.favorite-button {
	position: absolute;
	z-index: 4;
	top: 46px;
	right: 12px;
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, .94);
	box-shadow: 0 4px 12px rgba(20, 31, 53, .18);
	cursor: pointer;
}

.favorite-button svg {
	width: 18px;
	height: 18px;
	fill: transparent;
	stroke: var(--ink);
	stroke-width: 1.7;
}

.favorite-button.is-active svg {
	fill: #f3425f;
	stroke: #f3425f;
}

.property-card__body {
	padding: 17px;
}

.property-card__meta {
	display: flex;
	justify-content: space-between;
	gap: 8px;
	margin-bottom: 8px;
	color: var(--blue);
	font-size: 10px;
	font-weight: 750;
	text-transform: uppercase;
}

.property-card__meta span:last-child {
	color: #8992a1;
	font-weight: 650;
}

.property-card__title {
	display: block;
	min-height: 46px;
	margin-bottom: 8px;
	font-size: 17px;
	font-weight: 800;
	line-height: 1.27;
}

.property-card__title:hover {
	color: var(--blue);
}

.property-card__price {
	margin-bottom: 8px;
	font-size: 15px;
	font-weight: 850;
}

.property-card__line,
.property-card__address {
	margin: 0;
	color: var(--muted);
	font-size: 11px;
	line-height: 1.45;
}

.property-card__address {
	display: flex;
	align-items: flex-start;
	gap: 5px;
	margin-top: 6px;
}

.property-card__address svg {
	flex: 0 0 13px;
	width: 13px;
	height: 13px;
	margin-top: 1px;
}

.property-grid--wide .property-card__media {
	aspect-ratio: 1.55 / 1;
}

.scenario-grid {
	display: grid;
	grid-template-columns: 1.15fr .85fr .85fr;
	grid-template-rows: repeat(2, 210px);
	gap: 18px;
}

.scenario-card {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	overflow: hidden;
	padding: 26px;
	border-radius: 20px;
	background: var(--blue-soft);
}

.scenario-card::after {
	content: "";
	position: absolute;
	right: -35px;
	bottom: -45px;
	width: 180px;
	height: 180px;
	border: 28px solid rgba(255, 255, 255, .28);
	border-radius: 50%;
}

.scenario-card--large {
	grid-row: 1 / 3;
	background: linear-gradient(145deg, #e9f1ff, #c8dcff);
}

.scenario-card--large::before {
	content: "";
	position: absolute;
	inset: 0;
	background: url("../images/complex-business.png") 58% center / cover no-repeat;
	opacity: .32;
	mix-blend-mode: multiply;
}

.scenario-card--dark {
	background: var(--blue);
	color: #fff;
}

.scenario-card--image {
	grid-row: 1 / 3;
	background: linear-gradient(0deg, rgba(12, 26, 47, .82), rgba(12, 26, 47, .06)), url("../images/tashkent-hero.png") 60% center / cover;
	color: #fff;
}

.scenario-card--accent {
	background: var(--yellow);
}

.scenario-card span,
.scenario-card strong,
.scenario-card small,
.scenario-card i {
	position: relative;
	z-index: 2;
}

.scenario-card span {
	margin-bottom: 7px;
	color: currentColor;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 1px;
	text-transform: uppercase;
	opacity: .75;
}

.scenario-card strong {
	max-width: 340px;
	font-size: 26px;
	letter-spacing: -.8px;
	line-height: 1.06;
}

.scenario-card--large strong {
	font-size: 37px;
}

.scenario-card small {
	margin-top: 7px;
	opacity: .75;
}

.scenario-card i {
	position: absolute;
	top: 22px;
	right: 22px;
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .7);
	color: var(--ink);
	font-style: normal;
}

.mortgage-section {
	padding: 28px 0 82px;
}

.mortgage-card {
	display: grid;
	grid-template-columns: .9fr 1.1fr;
	gap: 70px;
	align-items: center;
	padding: 65px;
	border-radius: 26px;
	background: var(--blue-dark);
	color: #fff;
}

.eyebrow--light {
	color: var(--yellow);
}

.mortgage-copy p {
	max-width: 480px;
	margin: 18px 0 25px;
	color: rgba(255, 255, 255, .72);
}

.mortgage-benefits {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	color: #dce8ff;
	font-size: 12px;
}

.calculator {
	padding: 28px;
	border-radius: 18px;
	background: #fff;
	color: var(--ink);
	box-shadow: 0 16px 42px rgba(0, 18, 58, .25);
}

.calculator label {
	display: grid;
	grid-template-columns: 1fr auto;
	margin-bottom: 20px;
	color: var(--muted);
	font-size: 12px;
}

.calculator label strong {
	color: var(--ink);
}

.calculator input[type="range"] {
	grid-column: 1 / 3;
	width: 100%;
	margin-top: 10px;
	accent-color: var(--blue);
}

.calculator__result {
	display: flex;
	flex-direction: column;
	margin: 5px 0 18px;
	padding: 18px;
	border-radius: 12px;
	background: var(--soft);
}

.calculator__result span,
.calculator__result small {
	color: var(--muted);
	font-size: 11px;
}

.calculator__result strong {
	margin: 3px 0;
	font-size: 24px;
	letter-spacing: -.7px;
}

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

.district-grid a {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: 24px;
	border: 1px solid var(--line);
	border-radius: 14px;
	background: #fff;
	transition: border-color .15s, transform .15s;
}

.district-grid a:hover {
	border-color: var(--blue);
	transform: translateY(-2px);
}

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

.district-grid strong {
	margin-top: 4px;
	font-size: 17px;
}

.district-grid i {
	position: absolute;
	right: 22px;
	bottom: 22px;
	color: var(--blue);
	font-style: normal;
}

.developer-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 12px;
}

.developer-grid > div {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 145px;
	padding: 20px;
	border: 1px solid var(--line);
	border-radius: 15px;
	background: #fff;
	text-align: center;
}

.developer-grid b {
	color: #3b4659;
	font-size: 17px;
	letter-spacing: -.5px;
	line-height: 1.05;
}

.developer-grid span {
	margin-top: 10px;
	color: var(--muted);
	font-size: 10px;
}

.journal-grid {
	display: grid;
	grid-template-columns: 1.3fr .85fr .85fr;
	gap: 18px;
}

.journal-card {
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: 18px;
	background: #fff;
}

.journal-card__image {
	height: 205px;
	background: url("../images/apartment-interior.png") center / cover;
}

.journal-card__image--city {
	height: 290px;
	background-image: url("../images/complex-business.png");
}

.journal-card__image--house {
	background-image: url("../images/tashkent-hero.png");
}

.journal-card > div:last-child {
	padding: 20px;
}

.journal-card span {
	color: var(--blue);
	font-size: 10px;
	font-weight: 750;
	text-transform: uppercase;
}

.journal-card h3 {
	margin: 8px 0;
	font-size: 19px;
	letter-spacing: -.4px;
	line-height: 1.2;
}

.journal-card--feature h3 {
	font-size: 25px;
}

.journal-card p {
	color: var(--muted);
	font-size: 13px;
}

.journal-card a {
	color: var(--blue);
	font-size: 12px;
	font-weight: 750;
}

.consult-section {
	padding: 10px 0 80px;
}

.consult-card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	padding: 44px 50px;
	border-radius: 22px;
	background: var(--yellow);
}

.consult-card p {
	margin: 10px 0 0;
}

.site-footer {
	padding: 62px 0 0;
	background: #121b2d;
	color: #fff;
}

.footer-main {
	display: grid;
	grid-template-columns: 1.4fr repeat(3, 1fr);
	gap: 55px;
	padding-bottom: 50px;
}

.brand--light {
	color: #fff;
}

.footer-brand p {
	max-width: 320px;
	margin: 22px 0;
	color: #909aab;
	font-size: 12px;
}

.footer-socials {
	display: flex;
	gap: 15px;
	color: #c6ced9;
	font-size: 11px;
}

.footer-column {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.footer-column strong {
	margin-bottom: 8px;
	font-size: 13px;
}

.footer-column a,
.link-button,
.footer-column span {
	color: #929dac;
	font-size: 11px;
}

.footer-column a:hover,
.link-button:hover {
	color: #fff;
}

.link-button {
	width: fit-content;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.footer-phone {
	color: #fff !important;
	font-size: 16px !important;
	font-weight: 750;
}

.footer-contact .button {
	width: fit-content;
	margin-top: 10px;
	color: var(--ink);
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	gap: 25px;
	padding: 20px 0;
	border-top: 1px solid rgba(255, 255, 255, .1);
	color: #717c8f;
	font-size: 10px;
}

.modal {
	position: fixed;
	inset: 0;
	z-index: 100;
	display: grid;
	place-items: center;
	padding: 20px;
}

.modal[hidden],
.favorite-drawer[hidden] {
	display: none;
}

.modal__backdrop,
.favorite-drawer__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(10, 19, 35, .62);
	backdrop-filter: blur(5px);
}

.modal__panel {
	position: relative;
	z-index: 2;
	width: min(100%, 490px);
	padding: 34px;
	border-radius: 20px;
	background: #fff;
	box-shadow: 0 25px 70px rgba(5, 15, 32, .3);
}

.modal__panel--wide {
	width: min(100%, 720px);
}

.modal__panel h2 {
	margin: 7px 0 10px;
	font-size: 29px;
	letter-spacing: -1px;
	line-height: 1.1;
}

.modal__panel > p {
	color: var(--muted);
	font-size: 13px;
}

.modal__close {
	position: absolute;
	top: 15px;
	right: 15px;
	width: 36px;
	height: 36px;
	border: 0;
	border-radius: 50%;
	background: var(--soft);
	font-size: 25px;
	line-height: 1;
	cursor: pointer;
}

.modal-search {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 22px 0;
	padding: 0 13px;
	border: 1px solid var(--line);
	border-radius: 10px;
}

.modal-search input {
	width: 100%;
	height: 46px;
	border: 0;
	outline: 0;
}

.city-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 7px;
}

.city-grid button {
	padding: 10px 12px;
	border: 1px solid var(--line);
	border-radius: 9px;
	background: #fff;
	text-align: left;
	font-size: 12px;
	cursor: pointer;
}

.city-grid button:hover {
	border-color: var(--blue);
	color: var(--blue);
}

.lead-form {
	display: flex;
	flex-direction: column;
	gap: 13px;
	margin-top: 22px;
}

.lead-honeypot {
	position: absolute !important;
	left: -9999px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

.lead-form label {
	color: var(--muted);
	font-size: 11px;
}

.lead-form input {
	width: 100%;
	height: 48px;
	margin-top: 5px;
	padding: 0 13px;
	border: 1px solid var(--line);
	border-radius: 9px;
	outline: 0;
}

.lead-form input:focus {
	border-color: var(--blue);
}

.lead-form small {
	color: #9aa2af;
	font-size: 9px;
	text-align: center;
}

.form-status {
	font-size: 12px;
	text-align: center;
}

.form-status.is-success {
	color: var(--green);
}

.form-status.is-error {
	color: #d9384e;
}

.favorite-drawer {
	position: fixed;
	inset: 0;
	z-index: 110;
}

.favorite-drawer__panel {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 2;
	width: min(100%, 430px);
	height: 100%;
	overflow-y: auto;
	padding: 25px;
	background: #fff;
	box-shadow: -15px 0 50px rgba(10, 24, 48, .2);
}

.favorite-drawer__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--line);
}

.favorite-drawer__head h2 {
	margin: 0;
}

.favorite-drawer__head button {
	width: 36px;
	height: 36px;
	border: 0;
	border-radius: 50%;
	background: var(--soft);
	font-size: 24px;
}

.favorite-drawer__empty {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 80px 20px;
	text-align: center;
}

.favorite-drawer__empty > span {
	color: #c7ced9;
	font-size: 60px;
}

.favorite-drawer__empty p {
	color: var(--muted);
	font-size: 12px;
}

.favorite-item {
	display: grid;
	grid-template-columns: 92px 1fr auto;
	gap: 12px;
	padding: 15px 0;
	border-bottom: 1px solid var(--line);
}

.favorite-item img {
	width: 92px;
	height: 74px;
	border-radius: 9px;
	object-fit: cover;
}

.favorite-item strong {
	display: block;
	font-size: 12px;
	line-height: 1.3;
}

.favorite-item span {
	display: block;
	margin-top: 5px;
	color: var(--blue);
	font-size: 11px;
	font-weight: 750;
}

.favorite-item button {
	align-self: start;
	border: 0;
	background: transparent;
	color: #a1a8b5;
	font-size: 18px;
	cursor: pointer;
}

.toast {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 150;
	padding: 12px 17px;
	border-radius: 10px;
	background: var(--ink);
	color: #fff;
	font-size: 11px;
	box-shadow: var(--shadow);
	opacity: 0;
	pointer-events: none;
	transform: translateY(10px);
	transition: .2s ease;
}

.toast.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* Catalogue */
.catalogue-page,
.property-page {
	padding: 34px 0 85px;
}

.breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 24px;
	color: #8a93a2;
	font-size: 10px;
}

.breadcrumbs a:hover {
	color: var(--blue);
}

.catalogue-header {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 30px;
	margin-bottom: 28px;
}

.catalogue-header h1,
.property-title-row h1 {
	margin: 7px 0;
	font-size: clamp(34px, 4vw, 50px);
	letter-spacing: -2px;
	line-height: 1.05;
}

.catalogue-header p {
	margin: 0;
	color: var(--muted);
}

.catalogue-filter {
	margin-bottom: 24px;
	padding: 18px;
	border: 1px solid var(--line);
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 8px 30px rgba(24, 39, 75, .06);
}

.catalogue-filter__main {
	display: grid;
	grid-template-columns: 1.2fr 1.1fr .65fr 1fr 1fr auto;
	gap: 10px;
}

.catalogue-filter label {
	color: var(--muted);
	font-size: 10px;
}

.catalogue-filter select,
.catalogue-filter input {
	display: block;
	width: 100%;
	height: 44px;
	margin-top: 4px;
	padding: 0 10px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #fff;
	outline: 0;
	font-size: 12px;
}

.catalogue-filter__main .button {
	align-self: end;
}

.catalogue-filter__quick {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 16px;
	margin-top: 14px;
	padding-top: 14px;
	border-top: 1px solid var(--line);
	color: var(--muted);
	font-size: 11px;
}

.catalogue-filter__quick label {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	cursor: pointer;
}

.catalogue-filter__quick input {
	width: 15px;
	height: 15px;
	margin: 0;
}

.catalogue-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 18px;
}

.catalogue-toolbar > div {
	display: flex;
	align-items: center;
	gap: 6px;
}

.catalogue-toolbar label {
	color: var(--muted);
	font-size: 11px;
}

.catalogue-toolbar select {
	padding: 7px 9px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #fff;
}

.view-button {
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #fff;
	cursor: pointer;
}

.view-button.is-active {
	border-color: var(--ink);
	background: var(--ink);
	color: #fff;
}

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

.catalogue-grid.is-list {
	grid-template-columns: 1fr;
}

.catalogue-grid.is-list .property-card {
	display: grid;
	grid-template-columns: 330px 1fr;
}

.catalogue-grid.is-list .property-card__media {
	aspect-ratio: auto;
	height: 100%;
	min-height: 230px;
}

.catalogue-grid.is-list .favorite-button {
	top: 15px;
	right: 15px;
}

.pagination {
	margin-top: 35px;
}

.pagination .nav-links {
	display: flex;
	justify-content: center;
	gap: 5px;
}

.pagination .page-numbers {
	display: grid;
	place-items: center;
	min-width: 38px;
	height: 38px;
	border: 1px solid var(--line);
	border-radius: 8px;
	font-size: 12px;
}

.pagination .current {
	border-color: var(--blue);
	background: var(--blue);
	color: #fff;
}

.empty-state {
	padding: 80px 20px;
	border: 1px dashed #ccd3dd;
	border-radius: 18px;
	text-align: center;
}

.empty-state > span {
	font-size: 50px;
}

.empty-state p {
	color: var(--muted);
}

.catalogue-map {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	min-height: 340px;
	margin-top: 70px;
	overflow: hidden;
	padding: 45px;
	border-radius: 22px;
	background: #e8edf1;
}

.catalogue-map > div:last-child {
	position: relative;
	z-index: 2;
	width: min(100%, 430px);
	padding: 30px;
	border-radius: 16px;
	background: #fff;
	box-shadow: var(--shadow);
}

.catalogue-map h2 {
	margin: 6px 0 9px;
	font-size: 28px;
	line-height: 1.1;
}

.catalogue-map p {
	color: var(--muted);
	font-size: 12px;
}

.map-pattern {
	background-color: #e8edf2;
	background-image: linear-gradient(30deg, transparent 48%, rgba(95, 115, 137, .16) 49%, rgba(95, 115, 137, .16) 51%, transparent 52%), linear-gradient(120deg, transparent 48%, rgba(95, 115, 137, .12) 49%, rgba(95, 115, 137, .12) 51%, transparent 52%);
	background-size: 72px 72px;
}

.catalogue-map > .map-pattern {
	position: absolute;
	inset: 0;
}

/* Single property */
.property-gallery {
	display: grid;
	grid-template-columns: 2fr 1fr;
	grid-template-rows: repeat(2, 215px);
	gap: 8px;
	overflow: hidden;
	margin-bottom: 38px;
	border-radius: 20px;
	background: var(--soft);
}

.property-gallery > div {
	position: relative;
	overflow: hidden;
}

.property-gallery__main {
	grid-row: 1 / 3;
}

.property-gallery img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.property-gallery__more button {
	position: absolute;
	right: 16px;
	bottom: 16px;
	padding: 9px 12px;
	border: 0;
	border-radius: 8px;
	background: #fff;
	font-size: 11px;
	font-weight: 750;
}

.property-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 355px;
	gap: 55px;
	align-items: start;
}

.property-title-row {
	display: flex;
	justify-content: space-between;
	gap: 20px;
}

.property-labels {
	display: flex;
	gap: 7px;
}

.property-labels span {
	padding: 6px 9px;
	border-radius: 7px;
	background: var(--yellow);
	font-size: 9px;
	font-weight: 750;
}

.property-labels .muted {
	background: var(--blue-soft);
	color: var(--blue);
}

.property-location {
	color: var(--muted);
	font-size: 13px;
}

.favorite-button--standalone {
	position: static;
	flex: 0 0 44px;
	width: 44px;
	height: 44px;
	border: 1px solid var(--line);
	box-shadow: none;
}

.fact-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 9px;
	margin: 30px 0 42px;
}

.fact-grid > div {
	display: flex;
	flex-direction: column;
	padding: 18px;
	border-radius: 12px;
	background: var(--soft);
}

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

.fact-grid strong {
	margin-top: 4px;
	font-size: 16px;
}

.property-content section {
	padding: 30px 0;
	border-top: 1px solid var(--line);
}

.property-content section h2 {
	margin-bottom: 16px;
	font-size: 25px;
}

.property-description,
.property-description p {
	color: #525e71;
	font-size: 14px;
	line-height: 1.7;
}

.property-features > div {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
	font-size: 13px;
}

.property-features span {
	padding: 11px;
	border-radius: 8px;
	background: var(--soft);
}

.property-map-block .map-pattern {
	display: grid;
	place-items: center;
	height: 270px;
	border-radius: 15px;
}

.property-map-block .map-pattern span {
	display: grid;
	place-items: center;
	width: 52px;
	height: 52px;
	border-radius: 50% 50% 50% 8px;
	background: var(--blue);
	color: #fff;
	font-size: 25px;
	transform: rotate(-8deg);
}

.property-map-block > p {
	margin: 10px 0 0;
	color: var(--muted);
	font-size: 12px;
}

.property-sidebar {
	position: sticky;
	top: 100px;
}

.offer-card {
	padding: 25px;
	border: 1px solid var(--line);
	border-radius: 17px;
	background: #fff;
	box-shadow: var(--shadow);
}

.offer-card > span,
.offer-card__developer span {
	display: block;
	color: var(--muted);
	font-size: 10px;
}

.offer-card > strong {
	display: block;
	margin: 4px 0;
	font-size: 25px;
	letter-spacing: -.8px;
}

.offer-card > small {
	color: var(--muted);
}

.offer-card hr {
	height: 1px;
	margin: 19px 0;
	border: 0;
	background: var(--line);
}

.offer-card__developer {
	margin-bottom: 18px;
}

.offer-card__developer b {
	font-size: 14px;
}

.offer-card .button {
	margin-top: 8px;
}

.offer-card > p {
	margin: 14px 0 0;
	color: var(--muted);
	font-size: 9px;
	text-align: center;
}

.safety-note {
	display: flex;
	gap: 12px;
	margin-top: 12px;
	padding: 16px;
	border-radius: 12px;
	background: #ebf7f2;
}

.safety-note > span {
	display: grid;
	place-items: center;
	flex: 0 0 30px;
	height: 30px;
	border-radius: 50%;
	background: var(--green);
	color: #fff;
}

.safety-note strong {
	font-size: 11px;
}

.safety-note p {
	margin: 2px 0 0;
	color: #5d746b;
	font-size: 9px;
}

@media (max-width: 1160px) {
	.desktop-nav {
		gap: 15px;
	}

	.desktop-nav > a,
	.nav-item > a {
		font-size: 12px;
	}

	.header-phone {
		display: none;
	}

	.property-scroller,
	.property-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.property-scroller > :nth-child(4),
	.property-grid--wide > :nth-child(4) {
		display: none;
	}

	.catalogue-filter__main {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 920px) {
	.container {
		width: min(calc(100% - 30px), var(--container));
	}

	.desktop-nav,
	.header-actions .button {
		display: none;
	}

	.menu-button {
		display: block;
	}

	.mobile-panel.is-open {
		display: block;
	}

	.mobile-panel .container {
		display: flex;
		flex-direction: column;
		gap: 0;
		padding: 10px 0 20px;
	}

	.mobile-panel a {
		padding: 12px 0;
		border-bottom: 1px solid var(--line);
		font-weight: 700;
	}

	.mobile-panel .button {
		margin-top: 14px;
	}

	.hero {
		min-height: 680px;
	}

	.hero__content {
		padding-top: 60px;
	}

	.hero-search {
		grid-template-columns: 1fr 1fr;
	}

	.search-field {
		min-height: 58px;
		border-bottom: 1px solid var(--line);
	}

	.search-field--price {
		border-right: 0;
	}

	.filter-button,
	.search-submit {
		min-height: 48px;
	}

	.advanced-search {
		grid-template-columns: 1fr;
	}

	.trust-strip__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.trust-strip__grid > div:nth-child(2) {
		border-right: 0;
	}

	.trust-strip__grid > div:first-child {
		padding-left: 26px;
	}

	.property-scroller,
	.property-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.property-scroller > :nth-child(4),
	.property-grid--wide > :nth-child(4) {
		display: block;
	}

	.scenario-grid {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: 260px 210px 260px;
	}

	.scenario-card--large {
		grid-row: 1;
		grid-column: 1 / 3;
	}

	.scenario-card--image {
		grid-row: 3;
		grid-column: 1 / 3;
	}

	.mortgage-card {
		grid-template-columns: 1fr;
		gap: 35px;
		padding: 45px;
	}

	.developer-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.journal-grid {
		grid-template-columns: 1fr 1fr;
	}

	.journal-card--feature {
		grid-column: 1 / 3;
	}

	.footer-main {
		grid-template-columns: 1.3fr 1fr 1fr;
	}

	.footer-contact {
		grid-column: 2 / 4;
	}

	.catalogue-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.property-layout {
		grid-template-columns: 1fr;
	}

	.property-sidebar {
		position: static;
	}
}

@media (max-width: 650px) {
	.utility-bar__inner {
		gap: 13px;
	}

	.utility-bar .utility-link:nth-of-type(2),
	.utility-link .chevron,
	.favorite-trigger {
		font-size: 0;
	}

	.favorite-count {
		font-size: 10px;
	}

	.site-header__inner {
		min-height: 64px;
	}

	.hero {
		min-height: 730px;
	}

	.hero__image {
		background-position: 62% center;
	}

	.hero__veil {
		background: linear-gradient(90deg, rgba(11, 28, 53, .9), rgba(16, 39, 68, .62)), linear-gradient(0deg, rgba(8, 28, 52, .55), transparent);
	}

	.hero__content {
		padding-top: 42px;
	}

	.hero h1 {
		margin-top: 14px;
		font-size: 42px;
		letter-spacing: -2.1px;
	}

	.hero__content > p {
		font-size: 15px;
	}

	.search-tabs {
		overflow-x: auto;
	}

	.search-tabs button {
		flex: 0 0 auto;
	}

	.hero-search {
		grid-template-columns: 1fr;
	}

	.search-field {
		border-right: 0;
	}

	.filter-button {
		justify-content: center;
	}

	.quick-links > span {
		width: 100%;
	}

	.trust-strip__grid {
		grid-template-columns: 1fr 1fr;
	}

	.trust-strip__grid > div {
		padding: 18px 14px !important;
	}

	.trust-strip strong {
		font-size: 18px;
	}

	.section {
		padding: 58px 0;
	}

	.section-heading {
		align-items: flex-start;
	}

	.section-heading .arrow-link {
		font-size: 0;
	}

	.property-scroller {
		display: flex;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		padding-bottom: 12px;
	}

	.property-scroller .property-card {
		flex: 0 0 84%;
		scroll-snap-align: start;
	}

	.property-grid {
		grid-template-columns: 1fr;
	}

	.scenario-grid {
		display: flex;
		flex-direction: column;
	}

	.scenario-card {
		min-height: 210px;
	}

	.scenario-card--large,
	.scenario-card--image {
		min-height: 290px;
	}

	.mortgage-section {
		padding: 10px 0 58px;
	}

	.mortgage-card {
		width: 100%;
		padding: 35px 20px;
		border-radius: 0;
	}

	.district-grid,
	.developer-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.journal-grid {
		grid-template-columns: 1fr;
	}

	.journal-card--feature {
		grid-column: auto;
	}

	.consult-card {
		flex-direction: column;
		align-items: flex-start;
		padding: 34px 25px;
	}

	.footer-main {
		grid-template-columns: 1fr 1fr;
		gap: 38px 25px;
	}

	.footer-brand,
	.footer-contact {
		grid-column: 1 / 3;
	}

	.footer-bottom {
		flex-direction: column;
		gap: 7px;
	}

	.city-grid {
		grid-template-columns: 1fr 1fr;
	}

	.modal__panel {
		padding: 28px 20px;
	}

	.catalogue-page,
	.property-page {
		padding-top: 22px;
	}

	.catalogue-header {
		align-items: flex-start;
	}

	.catalogue-header .button {
		display: none;
	}

	.catalogue-filter__main {
		grid-template-columns: 1fr 1fr;
	}

	.catalogue-filter__main .button {
		grid-column: 1 / 3;
	}

	.catalogue-toolbar label {
		display: none;
	}

	.catalogue-grid {
		grid-template-columns: 1fr;
	}

	.catalogue-grid.is-list .property-card {
		display: block;
	}

	.catalogue-map {
		padding: 18px;
	}

	.property-gallery {
		grid-template-columns: 1fr;
		grid-template-rows: 300px;
	}

	.property-gallery__main {
		grid-row: auto;
	}

	.property-gallery > div:not(.property-gallery__main) {
		display: none;
	}

	.fact-grid {
		grid-template-columns: 1fr 1fr;
	}

	.property-features > div {
		grid-template-columns: 1fr;
	}
}
