:root {
	--ink: #f8f4f8;
	--muted: #a5a1b2;
	--dim: #716d7d;
	--night: #100e19;
	--night-soft: #17141f;
	--panel: #1d1927;
	--panel-light: #272231;
	--line: rgba(255, 255, 255, 0.11);
	--accent: #ec174f;
	--violet: #a869f0;
	--content: 1420px;
	--radius: 22px;
	--font-display: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
	--font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
	scroll-behavior: smooth;
}

body {
	min-width: 320px;
	margin: 0;
	overflow-x: hidden;
	background:
		radial-gradient(circle at 85% 0, rgba(131, 76, 194, 0.17), transparent 32rem),
		var(--night);
	color: var(--ink);
	font-family: var(--font-body);
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
}

body.has-dialog {
	overflow: hidden;
}

button,
input {
	font: inherit;
}

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

a {
	color: inherit;
}

img {
	display: block;
	max-width: 100%;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 1000;
	padding: 10px 16px;
	transform: translateY(-150%);
	border-radius: 99px;
	background: var(--ink);
	color: var(--night);
	font-weight: 800;
}

.skip-link:focus {
	transform: translateY(0);
}

:focus-visible {
	outline: 3px solid var(--violet);
	outline-offset: 4px;
}

.site-main,
.site-header__inner,
.site-footer__inner,
.site-footer__meta {
	width: min(var(--content), calc(100% - 64px));
	margin-inline: auto;
}

.site-header {
	position: relative;
	z-index: 30;
	border-bottom: 1px solid var(--line);
	background: rgba(16, 14, 25, 0.8);
	backdrop-filter: blur(22px);
}

.site-header__inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	min-height: 84px;
	gap: 34px;
}

.site-brand {
	display: inline-flex;
	align-items: center;
	gap: 13px;
	min-width: 0;
	text-decoration: none;
}

.site-brand__mark {
	display: grid;
	flex: 0 0 40px;
	width: 40px;
	height: 40px;
	place-items: center;
	border-radius: 12px;
	background: linear-gradient(145deg, var(--accent), #b10e74);
	box-shadow: 0 10px 30px rgba(236, 23, 79, 0.25);
}

.site-brand__mark svg {
	width: 28px;
	fill: none;
	stroke: #fff;
	stroke-linejoin: round;
	stroke-width: 2;
}

.site-brand__name {
	overflow: hidden;
	font-size: 17px;
	font-weight: 850;
	letter-spacing: -0.035em;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.site-header__actions {
	display: contents;
}

.city-picker-trigger {
	display: inline-flex;
	grid-column: 3;
	align-items: center;
	gap: 9px;
	padding: 10px 15px;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.045);
	color: var(--ink);
	cursor: pointer;
	font-size: 13px;
	font-weight: 750;
}

.city-picker-trigger:hover {
	border-color: rgba(255, 255, 255, 0.28);
	background: rgba(255, 255, 255, 0.08);
}

.city-picker-trigger svg {
	width: 17px;
	fill: var(--accent);
}

.site-navigation {
	display: flex;
	grid-column: 2;
	grid-row: 1;
	align-items: center;
	gap: 28px;
	min-width: 0;
}

.site-navigation__list {
	display: flex;
	align-items: center;
	gap: 24px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-navigation__list a {
	color: var(--muted);
	font-size: 13px;
	font-weight: 650;
	text-decoration: none;
}

.site-navigation__list a:hover,
.site-navigation__list .current-menu-item > a {
	color: var(--ink);
}

.site-tagline {
	margin: 0;
	overflow: hidden;
	color: var(--dim);
	font-size: 12px;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.menu-toggle {
	display: none;
	width: 42px;
	height: 42px;
	padding: 12px 10px;
	border: 1px solid var(--line);
	border-radius: 50%;
	background: transparent;
	color: var(--ink);
	cursor: pointer;
}

.menu-toggle > span:not(.screen-reader-text) {
	display: block;
	width: 19px;
	height: 1px;
	margin: 5px auto;
	background: currentColor;
	transition: transform 0.2s ease;
}

.eyebrow {
	display: flex;
	align-items: center;
	gap: 9px;
	margin: 0 0 15px;
	color: var(--muted);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.eyebrow > span {
	width: 22px;
	height: 2px;
	background: var(--accent);
}

.listing-hero {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 220px;
	align-items: end;
	min-height: 470px;
	padding: 110px 0 66px;
	gap: 60px;
	border-bottom: 1px solid var(--line);
}

.listing-hero h1,
.archive-header h1,
.page-heading h1 {
	max-width: 1050px;
	margin: 0;
	font-family: var(--font-display);
	font-size: clamp(52px, 7.4vw, 116px);
	font-stretch: condensed;
	font-weight: 800;
	letter-spacing: -0.07em;
	line-height: 0.84;
	text-wrap: balance;
}

.listing-hero__intro {
	max-width: 620px;
	margin: 29px 0 0;
	color: var(--muted);
	font-size: clamp(16px, 1.6vw, 20px);
}

.listing-hero__aside {
	padding: 0 0 5px 28px;
	border-left: 1px solid var(--line);
}

.listing-hero__aside span {
	font-family: var(--font-display);
	font-size: 70px;
	font-weight: 800;
	letter-spacing: -0.07em;
	line-height: 1;
}

.listing-hero__aside p {
	margin: 8px 0 0;
	color: var(--muted);
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.12em;
}

.catalog-filters {
	display: grid;
	grid-template-columns: 150px minmax(0, 1fr);
	align-items: start;
	padding: 28px 0;
	gap: 24px;
	border-bottom: 1px solid var(--line);
}

.catalog-filters__label {
	padding-top: 8px;
	color: var(--dim);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.catalog-filters__menus,
.catalog-filters__menus > div,
.catalog-filters__menus ul {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 9px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.catalog-filters__menus {
	gap: 14px;
}

.catalog-filters__menus a {
	display: inline-flex;
	padding: 8px 13px;
	border: 1px solid var(--line);
	border-radius: 999px;
	color: var(--muted);
	font-size: 12px;
	text-decoration: none;
}

.catalog-filters__menus a:hover,
.catalog-filters__menus .current-menu-item a,
.catalog-filters__menus .current-cat a {
	border-color: var(--violet);
	color: var(--ink);
}

.catalog-section {
	padding: 80px 0 110px;
}

.catalog-heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	margin-bottom: 34px;
}

.catalog-heading h2,
.editorial-note h2,
.profile-detail__content h2 {
	margin: 0;
	font-family: var(--font-display);
	font-size: clamp(34px, 4vw, 60px);
	letter-spacing: -0.055em;
	line-height: 1;
}

.catalog-heading__count {
	display: grid;
	width: 43px;
	height: 43px;
	place-items: center;
	border: 1px solid var(--line);
	border-radius: 50%;
	color: var(--muted);
	font-size: 11px;
}

.profile-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 34px 18px;
}

.profile-card {
	position: relative;
	min-width: 0;
}

.profile-card__media {
	position: relative;
	display: block;
	overflow: hidden;
	aspect-ratio: 3 / 4;
	border-radius: var(--radius);
	background: linear-gradient(145deg, var(--panel-light), var(--panel));
	text-decoration: none;
}

.profile-card__media::after {
	position: absolute;
	inset: 45% 0 0;
	content: "";
	background: linear-gradient(transparent, rgba(10, 8, 15, 0.8));
	pointer-events: none;
}

.profile-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.2, 0.7, 0, 1), filter 0.4s ease;
}

.profile-card:hover .profile-card__media img {
	transform: scale(1.035);
	filter: saturate(1.08);
}

.profile-card__placeholder {
	position: absolute;
	inset: 20%;
	border: 1px solid var(--line);
	border-radius: 50%;
}

.profile-card__index,
.profile-card__city {
	position: absolute;
	z-index: 2;
	top: 15px;
	padding: 7px 9px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 99px;
	background: rgba(16, 14, 25, 0.62);
	font-size: 10px;
	font-weight: 800;
	backdrop-filter: blur(12px);
}

.profile-card__index {
	left: 15px;
	letter-spacing: 0.12em;
}

.profile-card__city {
	right: 15px;
}

.profile-card__view {
	position: absolute;
	z-index: 2;
	right: 17px;
	bottom: 17px;
	left: 17px;
	display: flex;
	justify-content: space-between;
	color: #fff;
	font-size: 12px;
	font-weight: 750;
	opacity: 0;
	transform: translateY(8px);
	transition: 0.25s ease;
}

.profile-card:hover .profile-card__view {
	opacity: 1;
	transform: translateY(0);
}

.profile-card__body {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding: 17px 3px 0;
}

.profile-card__identity {
	min-width: 0;
}

.profile-card h2 {
	margin: 0;
	overflow: hidden;
	font-family: var(--font-display);
	font-size: 23px;
	letter-spacing: -0.04em;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.profile-card h2 a {
	text-decoration: none;
}

.profile-card h2 a:hover {
	color: var(--violet);
}

.profile-card p {
	margin: 3px 0 0;
	color: var(--muted);
	font-size: 12px;
}

.profile-card p span {
	color: var(--dim);
}

.phone-trigger {
	border: 0;
	background: var(--accent);
	color: #fff;
	cursor: pointer;
	font-weight: 800;
}

.phone-trigger--icon {
	display: grid;
	flex: 0 0 42px;
	width: 42px;
	height: 42px;
	place-items: center;
	border-radius: 50%;
	box-shadow: 0 9px 24px rgba(236, 23, 79, 0.2);
	transition: transform 0.2s ease, background 0.2s ease;
}

.phone-trigger--icon:hover {
	transform: rotate(-7deg) scale(1.06);
	background: var(--violet);
}

.phone-trigger svg {
	width: 19px;
	fill: currentColor;
}

.archive-header {
	padding: 56px 0 57px;
	border-bottom: 1px solid var(--line);
}

.breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	margin-bottom: 76px;
	color: var(--dim);
	font-size: 12px;
}

.breadcrumbs a {
	text-decoration: none;
}

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

.archive-header__row {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 40px;
}

.archive-header__count {
	display: flex;
	align-items: baseline;
	gap: 9px;
	padding-bottom: 7px;
}

.archive-header__count strong {
	font-size: 28px;
}

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

.catalog-pagination {
	display: flex;
	justify-content: center;
	gap: 7px;
	margin-top: 66px;
}

.catalog-pagination .page-numbers {
	display: grid;
	width: 42px;
	height: 42px;
	place-items: center;
	border: 1px solid var(--line);
	border-radius: 50%;
	color: var(--muted);
	text-decoration: none;
}

.catalog-pagination .current,
.catalog-pagination a:hover {
	border-color: var(--accent);
	background: var(--accent);
	color: #fff;
}

.empty-state {
	grid-column: 1 / -1;
	padding: 80px 24px;
	border: 1px dashed var(--line);
	border-radius: var(--radius);
	color: var(--muted);
	text-align: center;
}

.empty-state > span {
	display: block;
	color: var(--violet);
	font-size: 52px;
}

.editorial-note {
	max-width: 850px;
	margin: 0 0 120px;
	padding-left: 150px;
	color: var(--muted);
	font-size: 17px;
}

.editorial-note h2 {
	margin-bottom: 25px;
	color: var(--ink);
}

.profile-detail {
	padding: 47px 0 120px;
}

.profile-detail__breadcrumbs {
	margin-bottom: 40px;
}

.profile-detail__layout {
	display: grid;
	grid-template-columns: minmax(0, 0.94fr) minmax(360px, 0.72fr);
	align-items: start;
	gap: clamp(42px, 7vw, 110px);
}

.profile-detail__media {
	position: sticky;
	top: 30px;
	margin: 0;
	overflow: hidden;
	border-radius: 32px;
	background: var(--panel);
}

.profile-detail__media::after {
	position: absolute;
	inset: 55% 0 0;
	content: "";
	background: linear-gradient(transparent, rgba(8, 7, 12, 0.8));
}

.profile-detail__media img {
	width: 100%;
	max-height: 78vh;
	object-fit: cover;
}

.profile-detail__media figcaption {
	position: absolute;
	z-index: 2;
	right: 24px;
	bottom: 21px;
	padding: 8px 13px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 99px;
	background: rgba(16, 14, 25, 0.6);
	font-size: 11px;
	backdrop-filter: blur(10px);
}

.profile-detail__summary {
	padding-top: 55px;
}

.profile-detail__header h1 {
	margin: 0;
	font-family: var(--font-display);
	font-size: clamp(58px, 7vw, 104px);
	letter-spacing: -0.075em;
	line-height: 0.88;
}

.profile-detail__location {
	margin: 20px 0 0;
	color: var(--muted);
}

.profile-stats {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	margin: 43px 0;
	border-top: 1px solid var(--line);
	border-left: 1px solid var(--line);
}

.profile-stats div {
	padding: 17px 18px;
	border-right: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}

.profile-stats dt {
	color: var(--dim);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.profile-stats dd {
	margin: 3px 0 0;
	font-size: 18px;
	font-weight: 750;
}

.phone-trigger--large {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: space-between;
	padding: 18px 20px;
	border-radius: 13px;
	box-shadow: 0 13px 30px rgba(236, 23, 79, 0.18);
}

.phone-trigger--large:hover {
	background: #ff285e;
}

.profile-detail__content {
	margin-top: 54px;
	color: var(--muted);
}

.profile-detail__content h2 {
	margin-bottom: 24px;
	color: var(--ink);
	font-size: 35px;
}

.profile-detail__content > :last-child {
	margin-bottom: 0;
}

.page-heading {
	padding: 100px 0 60px;
}

.content-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	padding-bottom: 110px;
	border-top: 1px solid var(--line);
}

.content-card {
	position: relative;
	min-height: 220px;
	padding: 34px 80px 34px 0;
	border-bottom: 1px solid var(--line);
}

.content-card:nth-child(odd) {
	padding-right: 110px;
	border-right: 1px solid var(--line);
}

.content-card:nth-child(even) {
	padding-left: 40px;
}

.content-card__date,
.content-card__excerpt {
	color: var(--muted);
	font-size: 12px;
}

.content-card h2 {
	margin: 16px 0;
	font-size: 30px;
	line-height: 1.1;
}

.content-card h2 a {
	text-decoration: none;
}

.content-card__link {
	position: absolute;
	top: 34px;
	right: 30px;
	color: var(--violet);
	text-decoration: none;
}

.site-footer {
	border-top: 1px solid var(--line);
	background: var(--night-soft);
}

.site-footer__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: end;
	padding: 78px 0;
	gap: 60px;
}

.site-footer__lead {
	display: grid;
}

.site-footer__kicker {
	margin-bottom: 18px;
	color: var(--accent);
	font-size: 10px;
	font-weight: 850;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.site-footer__lead strong {
	font-family: var(--font-display);
	font-size: clamp(34px, 5vw, 70px);
	letter-spacing: -0.06em;
	line-height: 1;
}

.site-footer__lead p {
	max-width: 480px;
	margin: 18px 0 0;
	color: var(--muted);
}

.site-footer__city {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 22px 0;
	border: 0;
	border-bottom: 1px solid var(--line);
	background: transparent;
	color: var(--ink);
	cursor: pointer;
	font-size: clamp(18px, 2vw, 28px);
	text-align: left;
}

.site-footer__city span:last-child {
	color: var(--violet);
}

.site-footer__meta {
	display: flex;
	justify-content: space-between;
	padding: 20px 0 30px;
	border-top: 1px solid var(--line);
	color: var(--dim);
	font-size: 10px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.city-dialog,
.phone-dialog {
	position: fixed;
	inset: 0;
	z-index: 100;
	display: grid;
	place-items: center;
	padding: 24px;
	background: rgba(6, 5, 10, 0.84);
	backdrop-filter: blur(14px);
}

.city-dialog[hidden],
.phone-dialog[hidden],
[data-city-name][hidden] {
	display: none;
}

.city-dialog__panel,
.phone-dialog__panel {
	width: min(860px, 100%);
	max-height: min(82vh, 800px);
	overflow: auto;
	border: 1px solid var(--line);
	border-radius: 28px;
	background: var(--panel);
	box-shadow: 0 35px 100px rgba(0, 0, 0, 0.45);
}

.city-dialog__panel {
	padding: 38px;
}

.dialog-heading {
	display: flex;
	align-items: start;
	justify-content: space-between;
	gap: 30px;
}

.dialog-heading h2,
.phone-dialog h2 {
	margin: 0;
	font-family: var(--font-display);
	font-size: clamp(36px, 5vw, 60px);
	letter-spacing: -0.06em;
	line-height: 1;
}

.dialog-close {
	flex: 0 0 42px;
	width: 42px;
	height: 42px;
	border: 1px solid var(--line);
	border-radius: 50%;
	background: transparent;
	color: var(--muted);
	cursor: pointer;
	font-size: 24px;
	line-height: 1;
}

.dialog-close:hover {
	border-color: var(--ink);
	color: var(--ink);
}

.city-search {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 33px 0 21px;
	padding: 0 18px;
	border: 1px solid var(--line);
	border-radius: 13px;
	background: rgba(255, 255, 255, 0.035);
}

.city-search svg {
	width: 20px;
	fill: none;
	stroke: var(--muted);
	stroke-width: 1.7;
}

.city-search input {
	width: 100%;
	padding: 15px 0;
	border: 0;
	outline: 0;
	background: transparent;
	color: var(--ink);
}

.city-search input::placeholder {
	color: var(--dim);
}

.city-dialog__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: 13px;
	background: var(--line);
}

.city-dialog__grid a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 15px 16px;
	background: var(--panel);
	color: var(--muted);
	font-size: 13px;
	text-decoration: none;
}

.city-dialog__grid a:hover {
	background: var(--panel-light);
	color: var(--ink);
}

.city-dialog__grid a span:last-child {
	color: var(--violet);
}

.phone-dialog__panel {
	position: relative;
	max-width: 460px;
	padding: 52px 36px 38px;
	text-align: center;
}

.phone-dialog__panel .dialog-close {
	position: absolute;
	top: 18px;
	right: 18px;
}

.phone-dialog__icon {
	display: grid;
	width: 62px;
	height: 62px;
	margin: 0 auto 24px;
	place-items: center;
	border-radius: 50%;
	background: rgba(236, 23, 79, 0.14);
	color: var(--accent);
	font-size: 25px;
}

.phone-dialog p {
	color: var(--muted);
}

.phone-dialog__link {
	display: block;
	margin-top: 25px;
	padding: 16px;
	border-radius: 12px;
	background: var(--accent);
	color: #fff;
	font-size: 21px;
	font-weight: 850;
	text-decoration: none;
}

@media (max-width: 1100px) {
	.profile-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.site-tagline {
		display: none;
	}
}

@media (max-width: 820px) {
	.site-main,
	.site-header__inner,
	.site-footer__inner,
	.site-footer__meta {
		width: min(100% - 36px, var(--content));
	}

	.site-header__inner {
		grid-template-columns: minmax(0, 1fr) auto;
		min-height: 72px;
		gap: 14px;
	}

	.site-header__actions {
		display: flex;
		grid-column: 2;
		grid-row: 1;
		gap: 8px;
	}

	.city-picker-trigger {
		grid-column: auto;
	}

	.menu-toggle {
		display: block;
	}

	.menu-toggle[aria-expanded="true"] > span:first-child {
		transform: translateY(3px) rotate(45deg);
	}

	.menu-toggle[aria-expanded="true"] > span:nth-child(2) {
		transform: translateY(-3px) rotate(-45deg);
	}

	.site-navigation {
		position: absolute;
		top: 72px;
		right: 0;
		left: 0;
		display: none;
		padding: 24px 18px 28px;
		border-bottom: 1px solid var(--line);
		background: var(--night-soft);
	}

	.site-navigation.is-open {
		display: block;
	}

	.site-navigation__list {
		display: grid;
		gap: 0;
	}

	.site-navigation__list a {
		display: block;
		padding: 13px 0;
		border-bottom: 1px solid var(--line);
		font-size: 16px;
	}

	.site-navigation .site-tagline {
		display: block;
		margin-top: 20px;
		white-space: normal;
	}

	.listing-hero {
		grid-template-columns: 1fr;
		min-height: auto;
		padding: 90px 0 48px;
		gap: 40px;
	}

	.listing-hero__aside {
		display: flex;
		align-items: baseline;
		gap: 14px;
		padding: 0;
		border: 0;
	}

	.listing-hero__aside span {
		font-size: 50px;
	}

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

	.catalog-filters {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.profile-detail__layout {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.profile-detail__media {
		position: relative;
		top: auto;
	}

	.profile-detail__summary {
		padding-top: 38px;
	}

	.editorial-note {
		padding-left: 0;
	}

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

	.content-card:nth-child(n) {
		padding: 30px 70px 30px 0;
		border-right: 0;
	}

	.site-footer__inner {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 560px) {
	.site-brand__name {
		max-width: 128px;
	}

	.city-picker-trigger {
		width: 42px;
		height: 42px;
		justify-content: center;
		padding: 0;
	}

	.city-picker-trigger span {
		position: absolute;
		width: 1px;
		height: 1px;
		overflow: hidden;
		clip: rect(0, 0, 0, 0);
	}

	.listing-hero h1,
	.archive-header h1,
	.page-heading h1 {
		font-size: clamp(49px, 17vw, 78px);
	}

	.catalog-section {
		padding: 58px 0 78px;
	}

	.profile-grid {
		gap: 27px 10px;
	}

	.profile-card__media {
		border-radius: 15px;
	}

	.profile-card__index {
		display: none;
	}

	.profile-card__city {
		top: 9px;
		right: 9px;
		padding: 5px 7px;
	}

	.profile-card h2 {
		font-size: 18px;
	}

	.profile-card__body {
		padding-top: 11px;
	}

	.phone-trigger--icon {
		flex-basis: 36px;
		width: 36px;
		height: 36px;
	}

	.profile-card__view {
		display: none;
	}

	.archive-header {
		padding-top: 34px;
	}

	.breadcrumbs {
		margin-bottom: 50px;
	}

	.archive-header__row {
		display: block;
	}

	.archive-header__count {
		margin-top: 30px;
	}

	.profile-detail {
		padding-top: 30px;
	}

	.profile-detail__media {
		border-radius: 20px;
	}

	.profile-detail__header h1 {
		font-size: 62px;
	}

	.city-dialog {
		align-items: end;
		padding: 0;
	}

	.city-dialog__panel {
		max-height: 91vh;
		padding: 26px 18px;
		border-radius: 26px 26px 0 0;
	}

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

	.city-dialog__grid a {
		padding: 13px 12px;
	}

	.phone-dialog {
		padding: 14px;
	}

	.site-footer__meta {
		display: grid;
		gap: 8px;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}
