:root {
	--canvas: #000;
	--surface: #150b11;
	--surface-raised: #210e17;
	--surface-cool: #192247;
	--text: #ececec;
	--muted: #b6b0b3;
	--accent: #e50914;
	--accent-hover: #b1060e;
	--border: rgba(255, 255, 255, 0.2);
	--border-soft: rgba(255, 255, 255, 0.1);
	--overlay: rgba(0, 0, 0, 0.78);
	--container: 1280px;
	--control-radius: 8px;
	--card-radius: 14px;
	--feature-radius: 24px;
}

* {
	box-sizing: border-box;
}

html {
	background: var(--canvas);
	color-scheme: dark;
	scroll-behavior: smooth;
}

body {
	min-width: 0;
	margin: 0;
	overflow-x: hidden;
	background:
		radial-gradient(circle at 80% 10%, rgba(91, 19, 51, 0.16), transparent 28rem),
		var(--canvas);
	color: var(--text);
	font: 400 16px/1.55 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.has-overlay {
	overflow: hidden;
}

button,
input,
textarea {
	font: inherit;
}

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

a {
	color: inherit;
}

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

:focus-visible {
	outline: 2px solid #fff;
	outline-offset: 3px;
}

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

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

.site-header {
	position: relative;
	z-index: 50;
	min-height: 76px;
	border-bottom: 1px solid var(--border-soft);
	background: rgba(0, 0, 0, 0.76);
	backdrop-filter: blur(16px);
}

.site-header__inner {
	display: flex;
	min-height: 76px;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.site-brand {
	display: inline-flex;
	min-width: 0;
	align-items: center;
	gap: 12px;
	color: #fff;
	font-size: clamp(17px, 1.6vw, 23px);
	font-weight: 800;
	letter-spacing: -0.035em;
	text-decoration: none;
}

.site-brand__accent {
	width: 5px;
	height: 26px;
	flex: 0 0 auto;
	border-radius: 2px;
	background: var(--accent);
	transform: skew(-8deg);
}

.site-utilities {
	display: flex;
	align-items: center;
}

.city-picker-trigger,
.menu-toggle,
.filter-toggle,
.phone-trigger,
.profile-report button,
.dialog__close,
.catalog-filters__header button {
	min-height: 44px;
	border: 0;
	border-radius: var(--control-radius);
	cursor: pointer;
}

.city-picker-trigger {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 0 16px;
	border: 1px solid var(--border);
	background: rgba(255, 255, 255, 0.06);
	color: var(--text);
	font-weight: 650;
	transition: background-color 180ms ease, border-color 180ms ease;
}

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

.city-picker-trigger__pin {
	width: 9px;
	height: 9px;
	border: 2px solid var(--accent);
	border-radius: 50% 50% 50% 0;
	transform: rotate(-45deg);
}

.menu-toggle {
	display: none;
	align-items: center;
	gap: 10px;
	padding: 0 12px;
	background: transparent;
	color: var(--text);
	font-weight: 700;
}

.menu-toggle__icon {
	display: grid;
	gap: 5px;
}

.menu-toggle__icon i {
	display: block;
	width: 18px;
	height: 2px;
	background: currentColor;
	transition: transform 180ms ease;
}

.listing-hero {
	position: relative;
	display: grid;
	min-height: clamp(240px, 30vw, 410px);
	align-items: center;
	overflow: hidden;
	isolation: isolate;
}

.listing-hero::before {
	position: absolute;
	z-index: -2;
	inset: 0 -25vw;
	content: "";
	background:
		linear-gradient(90deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.48) 58%, rgba(0, 0, 0, 0.88) 100%),
		linear-gradient(135deg, #461518, #210e17 45%, #192247);
}

.listing-hero::after {
	position: absolute;
	z-index: -1;
	inset: 0 -25vw;
	content: "";
	background: linear-gradient(to bottom, transparent 38%, #000 100%);
}

.listing-hero__glow {
	position: absolute;
	z-index: -1;
	top: 14%;
	right: 2%;
	width: min(34vw, 430px);
	aspect-ratio: 1;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(202, 0, 91, 0.3), transparent 68%);
	filter: blur(18px);
}

.listing-hero__content {
	width: min(700px, 75%);
	padding: 46px 0 68px;
}

.listing-hero h1 {
	margin: 0;
	color: #fff;
	font-size: clamp(44px, 5vw, 64px);
	font-weight: 800;
	letter-spacing: -0.055em;
	line-height: 1.06;
	text-wrap: balance;
}

.listing-hero--compact {
	min-height: clamp(210px, 24vw, 310px);
}

.catalog-shell {
	padding: 10px 0 72px;
}

.catalog-layout {
	display: grid;
	grid-template-columns: 260px minmax(0, 1fr);
	gap: 28px;
	align-items: start;
}

.catalog-results {
	min-width: 0;
}

.catalog-toolbar {
	display: flex;
	min-height: 56px;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 20px;
}

.catalog-count {
	display: flex;
	align-items: baseline;
	gap: 9px;
	margin: 0;
	color: var(--muted);
}

.catalog-count strong {
	color: #fff;
	font-size: 27px;
	line-height: 1;
}

.filter-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	padding: 0 18px;
	background: var(--accent);
	color: #fff;
	font-weight: 750;
}

.catalog-filters {
	position: sticky;
	top: 20px;
	max-height: calc(100vh - 40px);
	overflow: auto;
	padding: 22px;
	border: 1px solid var(--border-soft);
	border-radius: var(--feature-radius);
	background:
		linear-gradient(145deg, rgba(70, 21, 24, 0.72), rgba(33, 14, 23, 0.96) 42%),
		var(--surface-raised);
	scrollbar-color: rgba(255, 255, 255, 0.22) transparent;
}

.catalog-filters__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.catalog-filters__header h2 {
	margin: 0;
	font-size: 23px;
	letter-spacing: -0.03em;
}

.catalog-filters__header button {
	display: none;
	width: 44px;
	padding: 0;
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	font-size: 24px;
}

.catalog-filter-group {
	padding-top: 24px;
}

.catalog-filter-group h3 {
	margin: 0 0 11px;
	color: #fff;
	font-size: 14px;
	font-weight: 750;
	letter-spacing: 0.01em;
}

.catalog-filter-group__items {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
}

.catalog-filter-group__items a {
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	gap: 7px;
	padding: 7px 10px;
	border: 1px solid var(--border-soft);
	border-radius: 8px;
	background: rgba(0, 0, 0, 0.18);
	color: var(--muted);
	font-size: 12px;
	line-height: 1.2;
	text-decoration: none;
	transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.catalog-filter-group__items a:hover,
.catalog-filter-group__items a[aria-current="page"] {
	border-color: rgba(229, 9, 20, 0.72);
	background: rgba(229, 9, 20, 0.14);
	color: #fff;
}

.catalog-filter-group__items small {
	color: inherit;
	opacity: 0.72;
}

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

.profile-card {
	position: relative;
	min-width: 0;
	overflow: hidden;
	border: 1px solid var(--border-soft);
	border-radius: var(--card-radius);
	background: linear-gradient(150deg, var(--surface-raised), #10080d);
	transition: border-color 200ms ease, transform 200ms ease;
}

.profile-card:hover {
	border-color: rgba(255, 255, 255, 0.28);
	transform: translateY(-3px);
}

.profile-card__media {
	position: relative;
	display: block;
	aspect-ratio: 3 / 4;
	overflow: hidden;
	background: var(--surface-cool);
}

.profile-card__media::after {
	position: absolute;
	inset: auto 0 0;
	height: 30%;
	content: "";
	background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
	pointer-events: none;
}

.profile-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 300ms ease;
}

.profile-card:hover .profile-card__media img {
	transform: scale(1.025);
}

.profile-card__body {
	display: grid;
	gap: 14px;
	padding: 16px;
}

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

.profile-card h3 {
	margin: 0;
	overflow-wrap: anywhere;
	font-size: clamp(17px, 1.6vw, 21px);
	line-height: 1.2;
	letter-spacing: -0.025em;
}

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

.profile-card p {
	display: flex;
	flex-wrap: wrap;
	gap: 5px 12px;
	margin: 7px 0 0;
	color: var(--muted);
	font-size: 13px;
}

.profile-card p span + span::before {
	margin-right: 8px;
	color: rgba(255, 255, 255, 0.3);
	content: "·";
}

.phone-trigger,
.profile-report button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 18px;
	background: var(--accent);
	color: #fff;
	font-weight: 750;
	transition: background-color 180ms ease;
}

.phone-trigger:hover,
.profile-report button:hover,
.filter-toggle:hover {
	background: var(--accent-hover);
}

.phone-trigger--card {
	width: 100%;
	font-size: 13px;
}

.empty-state {
	grid-column: 1 / -1;
	margin: 0;
	padding: 36px;
	border: 1px solid var(--border-soft);
	border-radius: var(--card-radius);
	background: var(--surface);
	color: var(--muted);
	text-align: center;
}

.catalog-pagination {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 32px;
}

.catalog-pagination .page-numbers {
	display: inline-grid;
	min-width: 44px;
	min-height: 44px;
	place-items: center;
	padding: 7px 12px;
	border: 1px solid var(--border-soft);
	border-radius: var(--control-radius);
	background: var(--surface);
	text-decoration: none;
}

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

.seo-content {
	margin-bottom: 80px;
	padding: clamp(32px, 5vw, 64px);
	overflow: hidden;
	border: 1px solid var(--border-soft);
	border-radius: var(--feature-radius);
	background:
		radial-gradient(circle at 90% 0, rgba(57, 25, 69, 0.85), transparent 42%),
		linear-gradient(135deg, #192247, #210e17);
}

.seo-content h2,
.profile-flow-section h2,
.profile-report h2 {
	max-width: 760px;
	margin: 0 0 20px;
	font-size: clamp(26px, 3vw, 34px);
	letter-spacing: -0.04em;
	line-height: 1.15;
}

.seo-content__body,
.profile-description__body {
	max-width: 760px;
	color: var(--muted);
	font-size: 17px;
}

.seo-content__body > :first-child,
.profile-description__body > :first-child {
	margin-top: 0;
}

.seo-content__body > :last-child,
.profile-description__body > :last-child {
	margin-bottom: 0;
}

.profile-detail {
	padding: 48px 0 88px;
}

.profile-detail__header {
	position: relative;
	margin-bottom: 34px;
	padding-left: 20px;
}

.profile-detail__header::before {
	position: absolute;
	top: 8px;
	bottom: 7px;
	left: 0;
	width: 4px;
	border-radius: 4px;
	background: var(--accent);
	content: "";
}

.profile-detail__header h1 {
	max-width: 900px;
	margin: 0;
	font-size: clamp(42px, 5vw, 64px);
	letter-spacing: -0.055em;
	line-height: 1.03;
}

.profile-location {
	margin: 12px 0 0;
	color: var(--muted);
	font-size: 15px;
}

.profile-primary {
	display: grid;
	grid-template-columns: minmax(0, 1.75fr) minmax(300px, 0.75fr);
	gap: 28px;
	align-items: start;
}

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

.profile-gallery__secondary {
	display: grid;
	grid-column: 1 / -1;
	grid-template-columns: repeat(2, minmax(160px, 1fr));
	gap: 12px;
	min-width: 0;
}

.profile-gallery__item {
	min-width: 0;
	margin: 0;
	overflow: hidden;
	border-radius: var(--card-radius);
	background: var(--surface);
}

.profile-gallery__item--lead {
	width: 100%;
}

.profile-gallery img,
.profile-gallery video,
.profile-gallery__secondary img,
.profile-gallery__secondary video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.profile-gallery__item--lead img,
.profile-gallery__item--lead video {
	aspect-ratio: 16 / 11;
	max-height: 780px;
}

.profile-gallery__secondary img,
.profile-gallery__secondary video {
	height: clamp(180px, 15vw, 220px);
}

.profile-sidebar {
	display: grid;
	gap: 16px;
}

.profile-panel,
.profile-flow-section,
.profile-report {
	border: 1px solid var(--border-soft);
	border-radius: var(--card-radius);
	background: linear-gradient(145deg, rgba(33, 14, 23, 0.98), rgba(15, 8, 13, 0.98));
}

.profile-panel {
	padding: 22px;
}

.profile-panel h2 {
	margin: 0 0 18px;
	font-size: 21px;
	letter-spacing: -0.03em;
}

.phone-trigger--profile {
	width: 100%;
	min-height: 52px;
}

.profile-characteristics dl {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	margin: 0;
}

.profile-characteristics dl div {
	min-width: 0;
	padding: 12px;
	border-radius: 9px;
	background: rgba(255, 255, 255, 0.045);
}

.profile-characteristics dt {
	overflow-wrap: anywhere;
	color: var(--muted);
	font-size: 12px;
}

.profile-characteristics dd {
	margin: 3px 0 0;
	overflow-wrap: anywhere;
	color: #fff;
	font-weight: 700;
}

.price-table-wrap {
	width: 100%;
	overflow-x: auto;
}

.price-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 13px;
}

.price-table th,
.price-table td {
	padding: 10px 8px;
	border-bottom: 1px solid var(--border-soft);
	text-align: left;
	white-space: normal;
}

.price-table thead th {
	color: var(--muted);
	font-size: 11px;
	font-weight: 600;
}

.price-table tbody th {
	color: #fff;
}

.profile-flow-section {
	margin-top: 64px;
	padding: clamp(28px, 4vw, 48px);
}

.profile-services {
	margin-top: 24px;
	background: linear-gradient(135deg, rgba(25, 34, 71, 0.76), rgba(33, 14, 23, 0.92));
}

.profile-services ul {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.profile-services li {
	padding: 9px 13px;
	border: 1px solid var(--border-soft);
	border-radius: 8px;
	background: rgba(0, 0, 0, 0.2);
	color: var(--muted);
	font-size: 14px;
}

.profile-report {
	margin-top: 64px;
	padding: clamp(28px, 4vw, 48px);
}

.profile-report form {
	display: grid;
	max-width: 720px;
	gap: 10px;
}

.profile-report label {
	color: var(--muted);
	font-size: 14px;
	font-weight: 650;
}

.profile-report textarea,
#modal-city-search {
	width: 100%;
	border: 1px solid var(--border);
	border-radius: var(--control-radius);
	background: rgba(0, 0, 0, 0.42);
	color: var(--text);
}

.profile-report textarea {
	min-height: 132px;
	resize: vertical;
	padding: 14px;
}

.profile-report button {
	justify-self: start;
	min-width: 150px;
	margin-top: 5px;
}

.profile-report button:disabled {
	cursor: wait;
	opacity: 0.62;
}

.form-status {
	min-height: 1.5em;
	margin: 4px 0 0;
	color: var(--muted);
}

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

.site-footer__inner {
	display: flex;
	min-height: 170px;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	color: var(--muted);
}

.site-footer strong {
	color: #fff;
	font-size: 19px;
}

.site-footer p {
	margin: 6px 0 0;
}

.city-dialog,
.phone-dialog {
	position: fixed;
	z-index: 200;
	inset: 0;
	display: grid;
	place-items: center;
	padding: 24px;
	background: var(--overlay);
	backdrop-filter: blur(12px);
}

.city-dialog[hidden],
.phone-dialog[hidden],
.filter-scrim[hidden] {
	display: none;
}

.city-dialog__panel,
.phone-dialog__panel {
	width: min(760px, 100%);
	max-height: min(82vh, 720px);
	overflow: auto;
	padding: 28px;
	border: 1px solid var(--border);
	border-radius: var(--feature-radius);
	background:
		radial-gradient(circle at 100% 0, rgba(57, 25, 69, 0.72), transparent 40%),
		var(--surface-raised);
}

.phone-dialog__panel {
	width: min(430px, 100%);
}

.dialog__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 20px;
}

.dialog__header h2 {
	margin: 0;
	font-size: 28px;
	letter-spacing: -0.04em;
}

.dialog__close {
	width: 44px;
	flex: 0 0 auto;
	padding: 0;
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	font-size: 25px;
}

#modal-city-search {
	min-height: 50px;
	padding: 0 15px;
}

.city-dialog__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 9px;
	margin-top: 18px;
}

.city-dialog__grid a,
.phone-dialog__panel [data-phone-link] {
	display: flex;
	min-height: 48px;
	align-items: center;
	padding: 11px 13px;
	border: 1px solid var(--border-soft);
	border-radius: var(--control-radius);
	background: rgba(0, 0, 0, 0.2);
	text-decoration: none;
}

.city-dialog__grid a:hover,
.city-dialog__grid a[aria-current="page"] {
	border-color: rgba(229, 9, 20, 0.75);
	background: rgba(229, 9, 20, 0.12);
}

.city-dialog__country {
	grid-column: 1 / -1;
	color: #fff;
	font-weight: 750;
}

.phone-dialog__panel [data-phone-link] {
	justify-content: center;
	min-height: 58px;
	border-color: rgba(229, 9, 20, 0.48);
	color: #fff;
	font-size: 21px;
	font-weight: 750;
}

.filter-scrim {
	position: fixed;
	z-index: 110;
	inset: 0;
	background: var(--overlay);
}

.content-list {
	display: grid;
	gap: 20px;
	padding: 48px 0 80px;
}

.content-list article {
	padding: 24px;
	border: 1px solid var(--border-soft);
	border-radius: var(--card-radius);
	background: var(--surface);
}

@media (max-width: 1199px) {
	.site-header__inner,
	.site-main,
	.site-footer__inner {
		width: min(var(--container), calc(100% - 64px));
	}

	.catalog-layout {
		grid-template-columns: 236px minmax(0, 1fr);
		gap: 22px;
	}

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

	.profile-primary {
		grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.75fr);
	}
}

@media (max-width: 900px) {
	.listing-hero__content {
		width: min(620px, 88%);
	}

	.catalog-layout {
		grid-template-columns: minmax(0, 1fr);
	}

	.filter-toggle {
		display: inline-flex;
	}

	.catalog-filters {
		position: fixed;
		z-index: 120;
		top: 0;
		right: auto;
		bottom: 0;
		left: 0;
		display: none;
		width: min(430px, calc(100% - 40px));
		max-height: none;
		padding: 24px;
		border-radius: 0 var(--feature-radius) var(--feature-radius) 0;
	}

	.catalog-filters.is-open {
		display: block;
	}

	.catalog-filters__header button {
		display: block;
	}

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

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

	.profile-prices {
		grid-column: 1 / -1;
	}
}

@media (max-width: 767px) {
	.site-header__inner,
	.site-main,
	.site-footer__inner {
		width: calc(100% - 40px);
	}

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

	.site-brand {
		max-width: calc(100% - 94px);
	}

	.site-brand span:last-child {
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

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

	.site-utilities {
		position: absolute;
		top: calc(100% + 1px);
		right: 20px;
		left: 20px;
		display: none;
		padding: 12px;
		border: 1px solid var(--border);
		border-radius: 0 0 12px 12px;
		background: rgba(21, 11, 17, 0.98);
	}

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

	.city-picker-trigger {
		width: 100%;
		justify-content: center;
	}

	.listing-hero {
		min-height: 230px;
	}

	.listing-hero__content {
		width: 100%;
		padding: 38px 0 54px;
	}

	.listing-hero h1 {
		font-size: clamp(31px, 9.2vw, 38px);
		line-height: 1.08;
	}

	.listing-hero--compact {
		min-height: 200px;
	}

	.catalog-shell {
		padding-top: 2px;
		padding-bottom: 52px;
	}

	.catalog-toolbar {
		margin-bottom: 16px;
	}

	.catalog-count strong {
		font-size: 23px;
	}

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

	.profile-card__body {
		gap: 11px;
		padding: 13px;
	}

	.profile-card h3 {
		font-size: 17px;
	}

	.profile-card p {
		display: grid;
		gap: 2px;
	}

	.profile-card p span + span::before {
		display: none;
	}

	.phone-trigger--card {
		padding-inline: 8px;
		font-size: 12px;
	}

	.seo-content {
		margin-bottom: 52px;
		padding: 28px 22px;
		border-radius: 18px;
	}

	.profile-detail {
		padding: 38px 0 64px;
	}

	.profile-detail__header {
		margin-bottom: 26px;
	}

	.profile-detail__header h1 {
		font-size: clamp(36px, 11vw, 48px);
	}

	.profile-gallery {
		display: block;
	}

	.profile-gallery__item--lead {
		width: 100%;
	}

	.profile-gallery__item--lead img,
	.profile-gallery__item--lead video {
		aspect-ratio: 4 / 5;
		max-height: 500px;
	}

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

	.profile-gallery__secondary img,
	.profile-gallery__secondary video {
		height: 205px;
	}

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

	.profile-prices {
		grid-column: auto;
	}

	.profile-flow-section,
	.profile-report {
		margin-top: 48px;
		padding: 25px 20px;
	}

	.profile-services {
		margin-top: 20px;
	}

	.site-footer__inner {
		min-height: 180px;
		align-items: flex-start;
		flex-direction: column;
		justify-content: center;
		gap: 22px;
	}

	.city-dialog,
	.phone-dialog {
		align-items: end;
		padding: 16px;
	}

	.city-dialog__panel,
	.phone-dialog__panel {
		max-height: calc(100vh - 32px);
		padding: 22px;
		border-radius: 18px;
	}

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

@media (max-width: 350px) {
	.site-header__inner,
	.site-main,
	.site-footer__inner {
		width: calc(100% - 32px);
	}

	.menu-toggle > span:first-child {
		position: absolute;
		width: 1px;
		height: 1px;
		overflow: hidden;
		clip: rect(0, 0, 0, 0);
	}

	.profile-grid,
	.city-dialog__grid,
	.profile-gallery__secondary {
		grid-template-columns: minmax(0, 1fr);
	}

	.profile-gallery__secondary img,
	.profile-gallery__secondary video {
		height: 260px;
	}

	.city-dialog__country {
		grid-column: auto;
	}
}

@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;
	}
}
