:root {
	--pbn-content-max: 1920px;
	--pbn-gutter-min: 24px;
	--pbn-gutter-max: 80px;
	--pbn-sidebar-min: 220px;
	--pbn-sidebar-max: 320px;
	--pbn-space-unit: 6px;
	--pbn-catalog-gap-min: 16px;
	--pbn-catalog-gap-max: 28px;
	--pbn-section-gap-max: 48px;
	--pbn-control-height: 40px;
	--pbn-header-nav-gap: 32px;
	--pbn-header-nav-min-height: 44px;
	--pbn-header-nav-max-height: 72px;
	--ink: #222;
	--muted: #969696;
	--paper: #fff;
	--wash: #f2f2f0;
	--line: #d7d7d2;
	--success: #73977b;
	--pbn-responsive-padding: var(--pbn-gutter-min);
	--gutter: clamp(var(--pbn-gutter-min), 3vw, var(--pbn-gutter-max));
	--catalog-gap: clamp(var(--pbn-catalog-gap-min), 1.6vw, var(--pbn-catalog-gap-max));
	font-family: Geologica, "Helvetica Neue", Arial, sans-serif;
	color: var(--ink);
	background: var(--wash);
	font-synthesis: none;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	min-width: 320px;
	color: var(--ink);
	background:
		linear-gradient(118deg, rgb(255 255 255 / 72%), rgb(229 229 226 / 58%)),
		var(--wash);
	font-size: 16px;
	font-weight: 300;
	line-height: 1.35;
}

body.is-locked {
	overflow: hidden;
}

[hidden] {
	display: none !important;
}

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

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

button,
input,
textarea {
	border-radius: 0;
	font: inherit;
}

button,
input[type="submit"] {
	cursor: pointer;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
	outline: 2px solid var(--ink);
	outline-offset: 3px;
}

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

.site-shell {
	width: min(100%, var(--pbn-content-max));
	margin-inline: auto;
	padding-inline: var(--pbn-responsive-padding);
}

.site-header {
	position: sticky;
	z-index: 40;
	top: 0;
	min-height: 104px;
	background: rgb(255 255 255 / 94%);
	border-bottom: 1px solid rgb(34 34 34 / 10%);
}

.site-header__bar {
	position: relative;
	z-index: 3;
	display: grid;
	grid-template-columns: minmax(240px, 1fr) auto minmax(240px, 1fr);
	align-items: center;
	height: 60px;
	padding-inline: var(--gutter);
}

.site-header__edge {
	display: flex;
	align-items: center;
	min-width: 0;
}

.site-header__edge--start {
	grid-column: 1;
}

.site-header__edge--end {
	grid-column: 3;
	justify-content: flex-end;
}

.site-brand {
	position: relative;
	z-index: 4;
	grid-column: 2;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	justify-self: center;
	letter-spacing: .18em;
	text-transform: uppercase;
	white-space: nowrap;
}

.site-brand img {
	width: 42px;
	height: 34px;
	object-fit: contain;
}

.site-brand span {
	font-size: 12px;
}

.profile-search {
	display: flex;
	align-items: center;
	width: min(100%, 260px);
	border-bottom: 1px solid var(--line);
}

.profile-search input {
	width: 100%;
	height: 36px;
	padding: 0 4px;
	border: 0;
	outline: 0;
	background: transparent;
}

.profile-search button {
	padding: 7px 0 7px 12px;
	border: 0;
	background: transparent;
	font-size: 13px;
	text-transform: uppercase;
}

.menu-command {
	display: none;
}

.header-navigation {
	position: absolute;
	z-index: 2;
	inset: 0;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	align-items: center;
	height: 60px;
	padding-inline: var(--gutter);
	pointer-events: none;
}

.header-navigation__group {
	display: flex;
	gap: clamp(14px, 2vw, var(--pbn-header-nav-gap));
	align-items: center;
	min-height: var(--pbn-header-nav-min-height);
	max-height: var(--pbn-header-nav-max-height);
	pointer-events: auto;
}

.header-navigation__group:first-child {
	padding-right: 108px;
}

.header-navigation__group:last-child {
	justify-content: flex-end;
	padding-right: 280px;
	padding-left: 108px;
}

.header-navigation a {
	position: relative;
	font-size: 13px;
	text-transform: uppercase;
	white-space: nowrap;
}

.header-navigation a::after {
	position: absolute;
	right: 0;
	bottom: -5px;
	left: 0;
	height: 1px;
	content: "";
	background: currentColor;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .2s ease;
}

.header-navigation a:hover::after {
	transform: scaleX(1);
}

.city-navigation {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: auto minmax(120px, 1fr) auto;
	align-items: center;
	min-height: 44px;
	padding-inline: var(--gutter);
	border-top: 1px solid rgb(34 34 34 / 8%);
	background: rgb(255 255 255 / 82%);
	font-size: 13px;
}

.city-navigation__country {
	display: flex;
	gap: 8px;
	padding-right: 20px;
	border-right: 1px solid var(--line);
}

.city-navigation__country span {
	color: var(--muted);
}

.city-navigation__context {
	padding-inline: 20px;
}

.city-navigation__trigger {
	display: flex;
	gap: 9px;
	align-items: center;
	min-height: 44px;
	padding-inline: 12px;
	border: 0;
	background: transparent;
	text-transform: uppercase;
}

.city-navigation__dot {
	width: 7px;
	height: 7px;
	background: var(--success);
	border-radius: 50%;
}

.mobile-menu {
	display: none;
}

.site-main {
	min-height: 45vh;
}

.campaign-hero {
	display: grid;
	gap: 0;
	margin-bottom: min(var(--pbn-section-gap-max), 48px);
	background: var(--paper);
}

.campaign-hero__media {
	width: 100%;
	max-height: 60vh;
	overflow: hidden;
	background: #191817;
}

.campaign-hero__media picture,
.campaign-hero__media img {
	width: 100%;
}

.campaign-hero__media img {
	height: min(42vw, 590px);
	max-height: 60vh;
	object-fit: cover;
	object-position: center 48%;
}

.campaign-hero__copy {
	display: grid;
	grid-template-columns: minmax(0, 520px) minmax(180px, 1fr) auto;
	gap: 12px 28px;
	align-items: end;
	padding: 22px var(--gutter) 26px;
}

.campaign-hero__copy .eyebrow {
	grid-column: 1;
	margin: 0;
	color: var(--muted);
	font-size: 12px;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.campaign-hero__copy h1 {
	grid-column: 1;
	margin: 0;
	font-size: clamp(34px, min(5vw, 8vh), 72px);
	font-weight: 200;
	letter-spacing: -.04em;
	line-height: .98;
}

.campaign-hero__copy > p:not(.eyebrow) {
	grid-column: 2;
	margin: 0;
	max-width: 430px;
	color: #555;
}

.strong-action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: var(--pbn-control-height);
	padding: 11px 26px;
	border: 1px solid #020304;
	background: #020304;
	color: #fff;
	text-align: center;
	text-transform: uppercase;
}

.campaign-hero__copy .strong-action {
	grid-column: 3;
}

.catalog-showroom {
	padding: 0 var(--pbn-space-unit) var(--pbn-section-gap-max);
}

.catalog-showroom__heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 18px;
}

.catalog-showroom__heading .eyebrow {
	order: 2;
	margin: 0 0 9px;
	color: var(--muted);
	font-size: 12px;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.catalog-showroom__heading h1 {
	margin: 0;
	font-size: clamp(38px, min(5.9vw, 10vh), 85px);
	font-weight: 200;
	letter-spacing: -.04em;
	line-height: 1;
	text-transform: uppercase;
}

.catalog-showroom__toolbar {
	position: relative;
	z-index: 8;
	display: flex;
	justify-content: flex-end;
	margin-bottom: 16px;
}

.catalog-filters {
	position: relative;
}

.filter-command {
	display: flex;
	gap: 36px;
	align-items: center;
	justify-content: space-between;
	min-width: 178px;
	min-height: var(--pbn-control-height);
	padding-inline: 14px;
	border: 1px solid var(--ink);
	background: transparent;
	text-transform: uppercase;
}

.filter-state {
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
	z-index: 50;
	width: min(440px, calc(100vw - 48px));
	min-width: min(var(--pbn-sidebar-min), 100%);
	max-width: var(--pbn-sidebar-max);
}

.filter-state__backdrop {
	display: none;
}

.filter-popover {
	position: relative;
	display: grid;
	grid-template-rows: auto minmax(0, 1fr);
	padding: 20px;
	border: 1px solid var(--ink);
	background: var(--paper);
	box-shadow: 0 16px 40px rgb(0 0 0 / 20%);
}

.filter-popover__header,
.dialog-panel__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: calc(var(--pbn-space-unit) * 3);
	margin-bottom: 16px;
}

.filter-popover__header h2,
.dialog-panel__header h2 {
	margin: 0;
	font-size: 24px;
	font-weight: 300;
}

.filter-popover__header button,
.dialog-panel__header button {
	min-height: 40px;
	padding: 0 12px;
	border: 1px solid var(--ink);
	background: transparent;
}

.filter-group {
	border-top: 1px solid var(--line);
}

.filter-group:last-child {
	border-bottom: 1px solid var(--line);
}

.filter-group__trigger {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	min-height: 48px;
	padding: 0;
	border: 0;
	background: transparent;
	text-align: left;
}

.filter-group__options {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 6px 18px;
	padding: 4px 0 16px;
}

.filter-group__options a {
	display: flex;
	gap: 8px;
	justify-content: space-between;
	padding-block: 6px;
	font-size: 14px;
}

.filter-group__options small {
	color: var(--muted);
}

.profile-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 304px));
	gap: var(--catalog-gap);
	justify-content: center;
	width: 100%;
	max-width: calc(1280px + (3 * var(--pbn-catalog-gap-max)));
	margin-inline: auto;
	overflow: visible;
}

.profile-grid__cell {
	min-width: 0;
	max-width: 304px;
}

.profile-card {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 2fr) minmax(72px, 1fr);
	width: 100%;
	max-width: 304px;
	max-height: 460px;
	overflow: visible;
	background: var(--paper);
	isolation: isolate;
}

.profile-card__media {
	grid-row: 1;
	grid-column: 1 / -1;
	width: 100%;
	max-height: 460px;
	background: var(--paper);
}

.profile-card__media img {
	width: 100%;
	height: auto;
	object-fit: contain;
}

.profile-card__overlay {
	position: absolute;
	z-index: 2;
	right: 34%;
	bottom: 0;
	left: 0;
	display: grid;
	gap: 2px;
	padding: 46px 14px 42px;
	color: #fff;
	background: linear-gradient(transparent, rgb(0 0 0 / 78%));
	pointer-events: none;
}

.profile-card__name {
	width: fit-content;
	font-size: clamp(18px, 1.7vw, 27px);
	font-weight: 300;
	line-height: 1.05;
	pointer-events: auto;
}

.profile-card__city {
	font-size: 13px;
}

.profile-card__reveal {
	position: absolute;
	z-index: 3;
	right: 8px;
	bottom: 8px;
	left: 66%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	gap: 8px;
	color: #fff;
	font-size: 12px;
	text-align: right;
}

.profile-card__reveal button {
	min-height: 30px;
	padding: 0;
	border: 0;
	border-bottom: 1px solid currentColor;
	background: transparent;
	color: inherit;
	font-size: 11px;
	text-transform: uppercase;
}

.catalog-editorial {
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: minmax(240px, .55fr) minmax(0, 1fr);
	gap: 28px;
	max-height: 360px;
	padding: 28px 0;
	border-block: 1px solid var(--line);
	background: transparent;
}

.catalog-editorial h2 {
	margin: 0;
	font-size: clamp(24px, 3vw, 44px);
	font-weight: 200;
	line-height: 1;
}

.catalog-editorial p:first-child {
	margin-top: 0;
}

.catalog-editorial p:last-child {
	margin-bottom: 0;
}

.minimal-stepper {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	max-width: 660px;
	margin: 32px auto 0;
	border-block: 1px solid var(--line);
}

.minimal-stepper > * {
	display: flex;
	align-items: center;
	min-height: 48px;
}

.minimal-stepper > :last-child {
	justify-content: flex-end;
}

.minimal-stepper a {
	text-transform: uppercase;
}

.minimal-stepper [aria-disabled="true"] {
	color: var(--muted);
}

.profile-dossier {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 44px;
	width: calc(100% - 60px);
	max-width: 1380px;
	margin: 30px auto 64px;
	padding: 30px;
	background: var(--paper);
	box-shadow: 0 16px 40px rgb(0 0 0 / 20%);
}

.profile-dossier__editorial,
.profile-dossier__content {
	min-width: 0;
}

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

.profile-gallery button {
	padding: 0;
	border: 0;
	background: #eee;
}

.profile-gallery__stage {
	grid-column: 1 / -1;
	aspect-ratio: 1;
	max-height: 64vh;
}

.profile-gallery__stage img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.profile-gallery__thumb {
	aspect-ratio: 1;
}

.profile-gallery__thumb img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.profile-dossier__content {
	display: flex;
	flex-direction: column;
}

.profile-identity {
	padding-bottom: 22px;
	border-bottom: 1px solid var(--line);
}

.eyebrow {
	color: var(--muted);
	font-size: 12px;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.profile-identity .eyebrow {
	margin: 0 0 6px;
}

.profile-identity h1 {
	margin: 0;
	font-size: clamp(42px, min(5.2vw, 9vh), 74px);
	font-weight: 200;
	letter-spacing: -.045em;
	line-height: 1;
}

.profile-identity > p:last-child {
	margin: 12px 0 0;
	color: var(--muted);
}

.profile-contact {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 12px;
	align-items: center;
	padding: 22px 0;
	border-bottom: 1px solid var(--line);
}

.profile-contact h2 {
	margin: 0;
	font-size: 24px;
	font-weight: 300;
}

.profile-contact__channels {
	grid-column: 1 / -1;
	display: flex;
	flex-wrap: wrap;
	gap: 8px 18px;
}

.profile-contact__channels a {
	border-bottom: 1px solid currentColor;
}

.profile-chapter,
.profile-report {
	padding: 22px 0;
	border-bottom: 1px solid var(--line);
}

.profile-chapter h2,
.profile-report h2 {
	margin: 0 0 15px;
	font-size: 28px;
	font-weight: 300;
}

.profile-chapter h3 {
	font-weight: 300;
}

.profile-facts {
	margin: 0;
}

.profile-facts > div {
	display: grid;
	grid-template-columns: minmax(120px, .75fr) 1fr;
	gap: 20px;
	padding: 7px 0;
}

.profile-facts dt {
	color: var(--muted);
}

.profile-facts dd {
	margin: 0;
}

.profile-rates {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px 24px;
}

.profile-rate {
	padding-top: 9px;
	border-top: 1px solid var(--line);
}

.profile-rate h3 {
	margin: 0 0 8px;
}

.profile-rate p {
	display: flex;
	justify-content: space-between;
	gap: 14px;
	margin: 5px 0;
}

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

.profile-services li {
	padding: 7px 10px;
	border: 1px solid var(--line);
}

.profile-report form {
	display: grid;
	gap: 9px;
}

.profile-report textarea {
	width: 100%;
	min-height: 96px;
	padding: 10px;
	border: 1px solid var(--line);
	resize: vertical;
}

.profile-report button[type="submit"] {
	justify-self: start;
	min-height: 40px;
	padding: 0 20px;
	border: 1px solid var(--ink);
	background: transparent;
	text-transform: uppercase;
}

.site-footer {
	min-height: 190px;
	max-height: 280px;
	padding: 34px var(--gutter);
	border-top: 1px solid var(--line);
	background: rgb(255 255 255 / 62%);
}

.site-footer__grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr .8fr 1fr;
	gap: clamp(22px, 4vw, 64px);
}

.site-footer__brand a {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	letter-spacing: .16em;
	text-transform: uppercase;
}

.site-footer__brand img {
	width: 46px;
	height: 36px;
	object-fit: contain;
}

.site-footer__brand p,
.site-footer__legal p {
	max-width: 300px;
	color: #666;
	font-size: 13px;
}

.site-footer__locations {
	display: grid;
	align-content: start;
	gap: 4px;
}

.site-footer__locations h2 {
	margin: 0 0 6px;
	font-size: 16px;
	font-weight: 300;
	text-transform: uppercase;
}

.site-footer__locations a {
	font-size: 13px;
}

.site-footer__context {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.site-footer__context span {
	color: var(--muted);
	font-size: 12px;
	text-transform: uppercase;
}

.site-footer__legal {
	font-size: 13px;
}

.dialog-overlay {
	position: fixed;
	z-index: 100;
	inset: 0;
	display: grid;
	place-items: center;
	padding: 24px;
	background: rgb(0 0 0 / 56%);
}

.dialog-panel {
	width: min(720px, 100%);
	max-height: calc(100vh - 48px);
	overflow: auto;
	padding: 24px;
	background: var(--paper);
	box-shadow: 0 16px 40px rgb(0 0 0 / 35%);
}

.dialog-panel--compact {
	width: min(420px, 100%);
}

.city-dialog__panel > label {
	display: block;
	margin-bottom: 6px;
}

.city-dialog__panel > input {
	width: 100%;
	height: 44px;
	padding: 0 10px;
	border: 0;
	border-bottom: 1px solid var(--ink);
}

.city-dialog__list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1px;
	margin-top: 20px;
	background: var(--line);
	border: 1px solid var(--line);
}

.city-dialog__list a {
	min-height: 44px;
	padding: 12px;
	background: var(--paper);
}

.gallery-dialog__panel {
	width: min(980px, 100%);
}

.gallery-dialog__stage {
	display: grid;
	grid-template-columns: 48px minmax(0, 1fr) 48px;
	align-items: center;
}

.gallery-dialog__stage img {
	width: 100%;
	max-height: calc(100vh - 170px);
	object-fit: contain;
}

.gallery-dialog__stage button {
	min-height: 48px;
	border: 0;
	background: transparent;
	font-size: 25px;
}

@media (max-width: 1180px) {
	.header-navigation__group {
		gap: 12px;
	}

	.header-navigation__group:last-child {
		padding-right: 260px;
	}

	.header-navigation a {
		font-size: 12px;
	}

	.profile-grid {
		grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
		width: auto;
		margin-inline: calc(-1 * (var(--pbn-responsive-padding) + var(--pbn-space-unit)));
	}

	.profile-grid__cell {
		justify-self: center;
		width: 100%;
	}

	.profile-dossier {
		grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
		gap: 20px;
		width: calc(100% - 32px);
		padding: 24px 12px;
	}
}

@media (max-width: 860px) {
	:root {
		--pbn-responsive-padding: var(--pbn-gutter-min);
		--gutter: clamp(var(--pbn-responsive-padding), 3.5vw, 32px);
	}

	.site-header {
		min-height: 91px;
	}

	.site-header__bar {
		grid-template-columns: 1fr auto 1fr;
		height: 47px;
	}

	.menu-command {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 44px;
		height: 44px;
		padding: 0;
		border: 0;
		background: transparent;
		font-size: 20px;
	}

	.site-brand img {
		width: 38px;
		height: 30px;
	}

	.site-brand span {
		display: none;
	}

	.profile-search {
		position: absolute;
		top: 47px;
		right: var(--gutter);
		left: var(--gutter);
		display: none;
		width: auto;
		padding: 5px 10px;
		background: var(--paper);
		box-shadow: 0 8px 18px rgb(0 0 0 / 16%);
	}

	.profile-search.is-open {
		display: flex;
	}

	.header-navigation {
		display: none;
	}

	.city-navigation {
		grid-template-columns: minmax(0, 1fr) auto;
		min-height: 44px;
	}

	.city-navigation__country {
		display: none;
	}

	.city-navigation__context {
		padding-left: 0;
	}

	.mobile-menu {
		position: absolute;
		z-index: 20;
		top: 91px;
		right: 0;
		left: 0;
		display: none;
		padding: 16px var(--gutter) 20px;
		border-top: 1px solid var(--line);
		background: var(--paper);
		box-shadow: 0 16px 24px rgb(0 0 0 / 15%);
	}

	.mobile-menu.is-open {
		display: grid;
		gap: 10px;
	}

	.mobile-menu > a {
		min-height: 36px;
		border-bottom: 1px solid var(--line);
		text-transform: uppercase;
	}

	.mobile-menu__location {
		margin-top: 6px;
		color: var(--muted);
	}

	.mobile-menu button {
		min-height: 44px;
		padding-inline: 12px;
		border: 1px solid var(--ink);
		background: transparent;
		text-align: left;
	}

	.campaign-hero__copy {
		grid-template-columns: 1fr auto;
		padding-block: 18px 22px;
	}

	.campaign-hero__copy .eyebrow,
	.campaign-hero__copy h1 {
		grid-column: 1 / -1;
	}

	.campaign-hero__copy > p:not(.eyebrow) {
		grid-column: 1;
	}

	.campaign-hero__copy .strong-action {
		grid-column: 2;
	}

	.profile-dossier {
		grid-template-columns: 1fr;
		width: calc(100% - 14px);
		margin-top: 7px;
		padding: 7px;
	}

	.profile-dossier__content {
		order: 1;
	}

	.profile-dossier__editorial {
		order: 2;
	}

	.profile-gallery__thumb {
		display: none;
	}
}

@media (max-width: 640px) {
	:root {
		--catalog-gap: 5px;
	}

	.campaign-hero {
		margin-bottom: 28px;
	}

	.campaign-hero__media img {
		height: min(120vw, 60vh);
		object-position: center;
	}

	.campaign-hero__copy {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.campaign-hero__copy h1 {
		font-size: clamp(34px, min(11.3vw, 7vh), 44px);
	}

	.campaign-hero__copy > p:not(.eyebrow),
	.campaign-hero__copy .strong-action {
		grid-column: 1;
	}

	.campaign-hero__copy .strong-action {
		justify-self: start;
	}

	.catalog-showroom {
		padding-inline: var(--pbn-space-unit);
	}

	.catalog-showroom__heading {
		display: block;
	}

	.catalog-showroom__heading .eyebrow {
		margin: 0 0 5px;
	}

	.catalog-showroom__heading h1 {
		font-size: clamp(32px, 9.2vw, 36px);
	}

	.catalog-showroom__toolbar {
		margin-bottom: 10px;
	}

	.filter-command {
		min-width: 144px;
		min-height: 44px;
	}

	.filter-state {
		position: fixed;
		top: 50%;
		right: auto;
		left: 50%;
		width: min(440px, calc(100% - 48px));
		max-width: none;
		max-height: calc(100% - 48px);
		transform: translate(-50%, -50%);
	}

	.filter-state__backdrop {
		position: fixed;
		inset: 0;
		display: block;
		width: 100%;
		height: 100%;
		padding: 0;
		border: 0;
		background: rgb(0 0 0 / 55%);
	}

	.filter-popover {
		position: relative;
		width: 100%;
		max-height: calc(100vh - 48px);
		overflow: hidden;
		padding: 16px;
	}

	.filter-popover__groups {
		overflow-y: auto;
	}

	.filter-group__options {
		grid-template-columns: 1fr;
	}

	.profile-grid {
		grid-template-columns: repeat(2, minmax(140px, 1fr));
		gap: 5px;
		justify-content: stretch;
	}

	.profile-grid__cell,
	.profile-card {
		max-width: none;
	}

	.profile-card__overlay {
		right: 42%;
		padding: 38px 8px 10px;
	}

	.profile-card__name {
		font-size: clamp(17px, 5vw, 21px);
	}

	.profile-card__city,
	.profile-card__reveal {
		font-size: 11px;
	}

	.profile-card__reveal {
		right: 7px;
		bottom: 6px;
		left: 58%;
	}

	.profile-card__reveal button {
		font-size: 0;
	}

	.profile-card__reveal button::after {
		font-size: 11px;
		content: "☎";
	}

	.catalog-editorial {
		grid-template-columns: 1fr;
		gap: 12px;
		max-height: 360px;
		padding: 22px 0;
	}

	.minimal-stepper {
		margin-top: 24px;
		font-size: 13px;
	}

	.profile-dossier {
		margin-bottom: 28px;
	}

	.profile-identity h1 {
		font-size: clamp(38px, 11vw, 46px);
	}

	.profile-contact {
		grid-template-columns: 1fr;
	}

	.profile-contact .strong-action,
	.profile-contact__channels {
		grid-column: 1;
	}

	.profile-contact .strong-action {
		width: 100%;
	}

	.profile-facts > div,
	.profile-rates {
		grid-template-columns: 1fr;
		gap: 3px;
	}

	.profile-facts > div {
		padding: 9px 0;
	}

	.site-footer {
		max-height: none;
		padding-block: 28px;
	}

	.site-footer__grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.dialog-overlay {
		padding: 12px;
	}

	.dialog-panel {
		max-height: calc(100vh - 24px);
		padding: 16px;
	}

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

	.gallery-dialog__stage {
		grid-template-columns: 40px minmax(0, 1fr) 40px;
	}
}
