:root {
	--brera-section-ink: #212121;
	--brera-section-muted: #595959;
	--brera-section-orange: #eb4526;
	--brera-section-surface: #f4f4f4;
	--brera-section-card: #fff;
	--brera-section-border: #e7e7e7;
}

/* Mobile in-page navigation */
.brera-section-nav {
	display: none;
}

@media (max-width: 767px) {
	.brera-section-nav {
		display: block;
		width: 100%;
		background: #fff;
	}

	.brera-section-nav__track {
		display: flex;
		align-items: center;
		gap: 12px;
		overflow-x: auto;
		padding: 4px 10px;
		scrollbar-width: none;
		-webkit-overflow-scrolling: touch;
	}

	.brera-section-nav__track::-webkit-scrollbar {
		display: none;
	}

	.brera-section-nav a {
		display: inline-flex;
		min-height: 36px;
		align-items: center;
		justify-content: center;
		flex: 0 0 auto;
		padding: 7px 14px;
		border: 1px solid #d5d5d5;
		border-radius: 16px;
		background: #fff;
		color: #595959;
		font-family: Lato, Helvetica, Arial, sans-serif;
		font-size: 13px;
		font-weight: 700;
		line-height: 1;
		text-decoration: none;
		white-space: nowrap;
	}

	.brera-section-nav a.is-active {
		border-color: #595959;
		color: #292929;
		text-decoration: none;
	}

	.brera-section-nav a:focus-visible {
		outline: 2px solid var(--brera-section-orange);
		outline-offset: 2px;
	}

	#property-hero,
	#apartments-redesign,
	#reviews,
	#location {
		scroll-margin-top: calc(var(--brera-top-fixed-offset, 0px) + 90px);
	}
}

/* Apartment category browser */
.brera-apartments {
	padding: 64px 0 10px;
	background: #fff;
	color: var(--brera-section-ink);
}

.brera-apartments__inner.wrapper {
	width: min(calc(100% - 32px), 1360px);
	max-width: 1360px;
	padding: 0 15px;
}

.brera-apartments__header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 32px;
	margin-bottom: 38px;
}

.brera-apartments__eyebrow {
	display: block;
	margin-bottom: 11px;
	color: #666;
	font-size: 9px;
	font-weight: 700;
	line-height: 1.2;
	text-transform: uppercase;
}

.brera-apartments__title {
	margin: 0;
	color: #292929;
	font-size: clamp(36px, 3.15vw, 46px);
	font-weight: 300;
	line-height: 1.12;
	letter-spacing: normal;
}

.brera-apartments__compare {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin: 0;
	padding: 6px 0;
	border: 0;
	background: transparent;
	color: var(--brera-section-orange);
	font: inherit;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.2;
	cursor: pointer;
}

.brera-apartments__compare img {
	width: 15px;
	height: 15px;
	transition: transform .2s ease;
}

.brera-apartments__compare[aria-pressed="true"] img {
	transform: rotate(180deg);
}

.brera-apartments__list {
	display: grid;
	gap: 12px;
}

.brera-apartment-card {
	display: grid;
	grid-template-columns: 200px minmax(0, 1fr) 190px;
	align-items: start;
	gap: 18px;
	min-height: 144px;
	padding: 16px 24px;
	border: 1px solid var(--brera-section-border);
	border-radius: 8px;
	background: #fff;
	transition: box-shadow .24s ease, border-color .24s ease;
}

.brera-apartment-card:not(.is-expanded) {
	cursor: pointer;
}

@media (hover: hover) {
	.brera-apartment-card:not(.is-expanded):hover {
		border-color: #c7c7c7;
		box-shadow: 0 5px 18px rgba(33, 33, 33, .07);
	}
}

.brera-apartment-card__media {
	position: relative;
	min-width: 0;
	height: 128px;
}

.brera-apartment-card__image-frame,
.brera-apartment-card__image {
	display: block;
	width: 100%;
	height: 100%;
}

.brera-apartment-card__image-frame {
	overflow: hidden;
	border-radius: 8px;
	background: #eee;
}

.brera-apartment-card__image {
	object-fit: cover;
}

.brera-apartment-card__content {
	display: grid;
	grid-template-columns: minmax(210px, .9fr) minmax(250px, 1fr);
	grid-template-rows: auto auto auto auto;
	column-gap: clamp(28px, 4vw, 62px);
	align-items: center;
	min-width: 0;
}

.brera-apartment-card__badge,
.brera-apartment-card__title,
.brera-apartment-card__meta,
.brera-apartment-card__gallery-toggle,
.brera-apartment-card__description,
.brera-apartment-card__details,
.brera-apartment-card__direct-booking {
	grid-column: 1;
}

.brera-apartment-card__badge {
	display: inline-flex;
	width: fit-content;
	align-items: center;
	gap: 7px;
	margin-bottom: 5px;
	padding: 5px 9px;
	border-radius: 999px;
	background: #f4f4f4;
	color: #595959;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
}

.brera-apartment-card__badge i {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--brera-section-orange);
}

.brera-apartment-card__title {
	margin: 0 0 4px;
	color: #292929;
	font-size: 21px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: normal;
}

.brera-apartment-card__meta,
.brera-apartment-card__description {
	margin: 0;
	color: #595959;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.35;
}

.brera-apartment-card__description {
	display: none;
	margin-top: 3px;
}

.brera-apartment-card__gallery-toggle {
	display: inline-flex;
	width: fit-content;
	align-items: center;
	gap: 6px;
	margin-top: 7px;
	padding: 5px 9px;
	border: 0;
	border-radius: 999px;
	background: #f4f4f4;
	color: #595959;
	font: inherit;
	font-size: 12px;
	line-height: 1;
	cursor: pointer;
}

.brera-apartment-card__expand-icon {
	display: block;
	width: 13px;
	height: 13px;
	flex: 0 0 13px;
}

.brera-apartment-card__open-icon {
	display: none;
	position: relative;
	bottom: 2px;
	width: 11px;
	height: 11px;
	flex: 0 0 11px;
}

.brera-apartment-card__open-icon::before,
.brera-apartment-card__open-icon::after {
	content: "";
	position: absolute;
	background: currentColor;
}

.brera-apartment-card__open-icon::before {
	left: 1px;
	top: 3px;
	width: 9px;
	height: 5px;
	border-bottom: 2px solid currentColor;
	border-left: 2px solid currentColor;
	background: transparent;
	transform: rotate(-45deg);
}

.brera-apartment-card__open-icon::after {
	display: none;
}

.brera-apartment-card__gallery-toggle b {
	font-weight: 600;
}

.brera-apartment-card__compact-facts {
	grid-column: 2;
	grid-row: 1 / span 4;
	align-self: flex-start;
}

.brera-apartment-card__compact-facts strong,
.brera-apartment-card__details strong {
	display: block;
	margin-bottom: 8px;
	color: var(--brera-section-ink);
	font-size: 12px;
	font-weight: 700;
	line-height: 1.2;
	text-transform: uppercase;
}

.brera-apartment-card__compact-facts ul,
.brera-apartment-card__details ul {
	display: grid;
	gap: 3px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.brera-apartment-card__compact-facts li,
.brera-apartment-card__details li {
	margin: 0;
	color: #595959;
	font-size: 14px;
	line-height: 1.3;
}

.brera-apartment-card__details {
	display: none;
}

.brera-apartment-card__direct-booking {
	display: none;
	width: 100%;
	margin-top: 14px;
	padding: 13px 14px 13px 17px;
	border-left: 3px solid var(--brera-section-orange);
	border-radius: 0 6px 6px 0;
	background: #fff7f3;
}

.brera-apartment-card__direct-booking strong {
	display: block;
	margin-bottom: 7px;
	color: var(--brera-section-ink);
	font-size: 12px;
	font-weight: 700;
	line-height: 1.2;
	text-transform: uppercase;
}

.brera-apartment-card__direct-booking ul {
	display: grid;
	gap: 3px;
	margin: 0;
	padding-left: 17px;
}

.brera-apartment-card__direct-booking li {
	margin: 0;
	color: #595959;
	font-size: 13px;
	line-height: 1.3;
}

.brera-apartment-card__availability {
	display: flex;
	align-items: start;
	align-self: center;
	flex-direction: column;
	gap: 8px;
	justify-self: end;
	text-align: center;
}

.brera-apartment-card__availability > span {
	color: #666;
	font-size: 13px;
	line-height: 1.2;
}

.brera-apartment-card__availability a {
	display: inline-flex;
	min-width: 180px;
	min-height: 48px;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 10px 18px;
	border-radius: 999px;
	background: #f4f4f4;
	color: var(--brera-section-orange);
	font-size: 15px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	transition: background-color .2s ease, color .2s ease;
}

.brera-apartment-card__cta-arrow {
	display: inline-flex;
	width: 16px;
	height: 16px;
	align-items: center;
	justify-content: center;
}

.brera-apartment-card__cta-arrow img {
	display: block;
	width: 16px;
	height: auto;
}

.brera-apartment-card__cta-arrow--white {
	display: none !important;
}

.brera-apartment-card__availability a:hover,
.brera-apartment-card__availability a:focus-visible,
.brera-apartment-card.is-expanded .brera-apartment-card__availability a {
	background: var(--brera-section-orange);
	color: #fff;
}

.brera-apartment-card__availability a:hover .brera-apartment-card__cta-arrow--red,
.brera-apartment-card__availability a:focus-visible .brera-apartment-card__cta-arrow--red,
.brera-apartment-card.is-expanded .brera-apartment-card__availability a .brera-apartment-card__cta-arrow--red {
	display: none;
}

.brera-apartment-card__availability a:hover .brera-apartment-card__cta-arrow--white,
.brera-apartment-card__availability a:focus-visible .brera-apartment-card__cta-arrow--white,
.brera-apartment-card.is-expanded .brera-apartment-card__availability a .brera-apartment-card__cta-arrow--white {
	display: block !important;
}

.brera-apartment-card__gallery-arrow,
.brera-apartment-card__gallery-count {
	display: none;
}

.brera-apartment-card.is-expanded {
	grid-template-columns: minmax(420px, 520px) minmax(340px, .95fr) 190px;
	align-items: start;
	gap: 26px;
	min-height: 360px;
	padding: 20px;
	border-color: transparent;
	box-shadow: 0 10px 34px rgba(33, 33, 33, .11);
}

.brera-apartment-card.is-expanded .brera-apartment-card__media {
	height: 320px;
}

.brera-apartment-card.is-expanded .brera-apartment-card__content {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
}

.brera-apartment-card.is-expanded .brera-apartment-card__description,
.brera-apartment-card.is-expanded .brera-apartment-card__details,
.brera-apartment-card.is-expanded .brera-apartment-card__direct-booking,
.brera-apartment-card.is-expanded .brera-apartment-card__gallery-arrow,
.brera-apartment-card.is-expanded .brera-apartment-card__gallery-count {
	display: flex;
}

.brera-apartment-card.is-expanded .brera-apartment-card__direct-booking {
	display: block;
}

.brera-apartment-card.is-expanded .brera-apartment-card__compact-facts {
	display: none;
}

.brera-apartment-card.is-expanded .brera-apartment-card__gallery-toggle {
	margin-top: 9px;
	background: var(--brera-section-orange);
	color: #fff;
}

.brera-apartment-card.is-expanded .brera-apartment-card__expand-icon {
	display: none;
}

.brera-apartment-card.is-expanded .brera-apartment-card__open-icon {
	display: block;
}

.brera-apartment-card.is-expanded .brera-apartment-card__details {
	width: 100%;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
	margin-top: 14px;
	padding: 14px;
	border: 1px solid var(--brera-section-border);
	border-radius: 6px;
}

@media (min-width: 901px) {
	.brera-apartment-card.is-expanded .brera-apartment-card__content,
	.brera-apartment-card.is-expanded .brera-apartment-card__availability {
		align-self: center;
	}
}

.brera-apartment-card__gallery-arrow {
	position: absolute;
	top: 50%;
	z-index: 2;
	width: 40px;
	height: 40px;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, .94);
	box-shadow: 0 2px 12px rgba(33, 33, 33, .13);
	color: #292929;
	font: inherit;
	font-size: 0;
	line-height: 0;
	cursor: pointer;
	transform: translateY(-50%);
}

.brera-apartment-card__gallery-arrow::before {
	width: 7px;
	height: 7px;
	border-top: 2px solid currentColor;
	border-right: 2px solid currentColor;
	content: "";
}

.brera-apartment-card__gallery-arrow--prev::before {
	transform: translateX(2px) rotate(-135deg);
}

.brera-apartment-card__gallery-arrow--next::before {
	transform: translateX(-2px) rotate(45deg);
}

.brera-apartment-card__gallery-arrow--prev {
	left: 16px;
}

.brera-apartment-card__gallery-arrow--next {
	right: 16px;
}

.brera-apartment-card__gallery-count {
	position: absolute;
	right: 14px;
	bottom: 14px;
	z-index: 2;
	align-items: center;
	padding: 7px 11px;
	border-radius: 999px;
	background: rgba(33, 33, 33, .78);
	color: #fff;
	font-size: 12px;
	line-height: 1;
}

.brera-apartment-card__gallery-count b {
	font-weight: 700;
}

body.brera-redesign-ab .section--tabbed-content,
body.brera-redesign-ab .mobile-toggler:has(+ .section--tabbed-content) {
	display: none;
}

@media (max-width: 1120px) {
	.brera-apartment-card {
		grid-template-columns: 180px minmax(0, 1fr) 165px;
	}

	.brera-apartment-card.is-expanded {
		grid-template-columns: minmax(300px, .9fr) minmax(270px, 1fr) 165px;
	}

	.brera-apartment-card__content {
		grid-template-columns: minmax(180px, .9fr) minmax(210px, 1fr);
		column-gap: 24px;
	}

	.brera-apartment-card.is-expanded .brera-apartment-card__media {
		height: 285px;
	}

	.brera-apartment-card__availability a {
		min-width: 145px;
	}
}

@media (max-width: 900px) {
	.brera-apartment-card,
	.brera-apartment-card.is-expanded {
		grid-template-columns: 180px minmax(0, 1fr);
		align-items: stretch;
	}

	.brera-apartment-card__content {
		display: flex;
		align-items: flex-start;
		flex-direction: column;
		justify-content: center;
	}

	.brera-apartment-card__compact-facts {
		display: none;
	}

	.brera-apartment-card__availability {
		grid-column: 2;
		align-items: flex-start;
		justify-self: start;
		margin-top: -2px;
	}

	.brera-apartment-card.is-expanded .brera-apartment-card__availability {
		grid-column: 2;
	}
}

@media (max-width: 767px) {
	.brera-apartments {
		padding: 52px 0 58px;
	}

	.brera-apartments__header {
		align-items: flex-start;
		flex-direction: column;
		gap: 14px;
		margin-bottom: 26px;
	}

	.brera-apartments__title {
		font-size: clamp(34px, 10vw, 30px);
	}

	.brera-apartments__compare {
		margin: 0;
	}

	.brera-apartments__list {
		gap: 14px;
	}

	.brera-apartment-card {
		position: relative;
		grid-template-columns: 1fr;
		gap: 0;
		min-height: 96px;
		padding: 14px 48px 14px 14px;
		border-radius: 14px;
	}

	.brera-apartment-card:not(.is-expanded) .brera-apartment-card__media,
	.brera-apartment-card:not(.is-expanded) .brera-apartment-card__compact-facts,
	.brera-apartment-card:not(.is-expanded) .brera-apartment-card__availability {
		display: none;
	}

	.brera-apartment-card__content {
		grid-column: 1;
		justify-content: center;
		min-height: 66px;
	}

	.brera-apartment-card__badge {
		margin-bottom: 7px;
		padding: 5px 8px;
		font-size: 9px;
	}

	.brera-apartment-card__badge i {
		width: 5px;
		height: 5px;
	}

	.brera-apartment-card__title {
		margin-bottom: 5px;
		font-size: 20px;
	}

	.brera-apartment-card__meta,
	.brera-apartment-card__description {
		font-size: 12px;
		font-weight: 400;
	}

	.brera-apartment-card__gallery-toggle {
		position: absolute;
		top: 0;
		right: 0;
		z-index: 4;
		width: 46px;
		height: 100%;
		margin: 0;
		padding: 0;
		border-radius: 0;
		background: transparent;
		color: #292929;
	}

	.brera-apartment-card__gallery-toggle:hover,
	.brera-apartment-card__gallery-toggle:focus-visible,
	.brera-apartment-card.is-expanded .brera-apartment-card__gallery-toggle {
		background: transparent;
		color: #292929;
	}

	.brera-apartment-card__gallery-toggle::before,
	.brera-apartment-card__gallery-toggle::after {
		position: absolute;
		top: 50%;
		left: 50%;
		width: 14px;
		height: 1px;
		background: currentColor;
		content: "";
		transform: translate(-50%, -50%);
	}

	.brera-apartment-card__gallery-toggle::after {
		transform: translate(-50%, -50%) rotate(90deg);
	}

	.brera-apartment-card.is-expanded .brera-apartment-card__gallery-toggle::after {
		display: none;
	}

	.brera-apartment-card__gallery-toggle .brera-apartment-card__expand-icon,
	.brera-apartment-card__gallery-toggle .brera-apartment-card__open-icon {
		display: none !important;
	}

	.brera-apartment-card__gallery-toggle .brera-apartment-card__open-icon::before,
	.brera-apartment-card__gallery-toggle .brera-apartment-card__open-icon::after {
		display: none !important;
		content: none !important;
	}

	.brera-apartment-card__gallery-toggle b {
		position: absolute;
		width: 1px;
		height: 1px;
		overflow: hidden;
		clip: rect(0 0 0 0);
		clip-path: inset(50%);
		white-space: nowrap;
	}

	.brera-apartment-card.is-expanded {
		position: relative;
		display: grid;
		grid-template-columns: 1fr;
		gap: 18px;
		min-height: 0;
		padding: 14px;
		border-color: transparent;
		border-radius: 14px;
		box-shadow: 0 10px 30px rgba(33, 33, 33, .13);
	}

	.brera-apartment-card.is-expanded .brera-apartment-card__content {
		display: contents;
	}

	.brera-apartment-card.is-expanded .brera-apartment-card__badge,
	.brera-apartment-card.is-expanded .brera-apartment-card__title,
	.brera-apartment-card.is-expanded .brera-apartment-card__meta,
	.brera-apartment-card.is-expanded .brera-apartment-card__description,
	.brera-apartment-card.is-expanded .brera-apartment-card__details,
	.brera-apartment-card.is-expanded .brera-apartment-card__direct-booking {
		grid-column: 1;
	}

	.brera-apartment-card.is-expanded .brera-apartment-card__badge {
		grid-row: 1;
		margin: 0;
	}

	.brera-apartment-card.is-expanded .brera-apartment-card__title {
		grid-row: 2;
		margin: -9px 0 0;
	}

	.brera-apartment-card.is-expanded .brera-apartment-card__meta {
		grid-row: 3;
		margin-top: -9px;
	}

	.brera-apartment-card.is-expanded .brera-apartment-card__description {
		grid-row: 4;
		margin-top: 0;
		line-height: 1.45;
	}

	.brera-apartment-card.is-expanded .brera-apartment-card__gallery-toggle {
		top: 10px;
		right: 8px;
		width: 40px;
		height: 40px;
	}

	.brera-apartment-card.is-expanded .brera-apartment-card__media {
		grid-column: 1;
		grid-row: 5;
		width: 100%;
		height: auto;
		aspect-ratio: 1.2 / 1;
	}

	.brera-apartment-card.is-expanded .brera-apartment-card__details {
		display: grid;
		grid-row: 6;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 16px;
		margin: 0;
		padding: 14px;
		border: 0;
	}

	.brera-apartment-card.is-expanded .brera-apartment-card__direct-booking {
		grid-row: 7;
		margin: 0;
	}

	.brera-apartment-card__details strong {
		font-size: 9px;
	}

	.brera-apartment-card__details li {
		font-size: 11px;
	}

	.brera-apartment-card__gallery-arrow--prev {
		left: 12px;
	}

	.brera-apartment-card__gallery-arrow--next {
		right: 12px;
	}

	.brera-apartment-card__gallery-count {
		right: 12px;
		bottom: 12px;
		padding: 7px 12px;
		font-size: 11px;
	}

	.brera-apartment-card.is-expanded .brera-apartment-card__availability {
		display: flex;
		grid-column: 1;
		grid-row: 8;
		align-items: stretch;
		justify-self: stretch;
		margin: 0;
	}

	.brera-apartment-card.is-expanded .brera-apartment-card__availability > span {
		display: none;
	}

	.brera-apartment-card__availability a {
		width: 100%;
		min-height: 52px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.brera-apartment-card,
	.brera-apartments__compare img,
	.brera-apartment-card__availability a {
		transition: none;
	}
}

/* Property story */
.brera-property-story {
	padding: 65px 0;
	background: #fff;
	color: var(--brera-section-ink);
}

.brera-property-story__inner.wrapper {
	width: min(calc(100% - 32px), 1360px);
	max-width: 1360px;
	padding: 0 15px;
}

.brera-property-story__panel {
	display: grid;
	grid-template-columns: minmax(270px, .72fr) minmax(0, 1.55fr);
	align-items: start;
	gap: clamp(48px, 6vw, 96px);
	padding: clamp(38px, 4.5vw, 64px);
	border-radius: 16px;
	background: var(--brera-section-surface);
}

.brera-property-story__eyebrow {
	display: block;
	margin-bottom: 16px;
	color: #666;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.2;
	text-transform: uppercase;
}

.brera-property-story__title {
	margin: 0 0 24px;
	color: #292929;
	font-size: clamp(34px, 3vw, 38px);
	font-weight: 300;
	line-height: 1.12;
	letter-spacing: normal;
}

.brera-property-story__highlights {
	display: grid;
	gap: 20px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.brera-property-story__highlights li {
	margin: 0;
	color: #595959;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.45;
}

.brera-property-story__body {
	color: #595959;
	font-size: 16px;
	line-height: 1.58;
}

.brera-property-story__details {
	min-width: 0;
}

.brera-property-story__toggle {
	display: none;
}

.brera-property-story__body p {
	margin: 0 0 22px;
}

.brera-property-story__body p:last-child {
	margin-bottom: 0;
}

/* The new block replaces only the editorial part of the legacy map section. */
body.brera-redesign-ab .brera-property-story__legacy-summary,
body.brera-redesign-ab #lage-umgebung > .wrapper > .am2-map__title,
body.brera-redesign-ab #lage-umgebung > .wrapper > .am2-map__columns,
body.brera-redesign-ab .mobile-toggler:has(+ #lage-umgebung),
body.brera-redesign-ab .wp-block-spacer:has(+ .brera-property-story) {
	display: none;
}

@media (max-width: 767px) {
	.brera-property-story {
		display: block;
		padding: 30px 0 32px;
		background: var(--brera-section-surface);
	}

	.brera-property-story__inner.wrapper {
		width: 100%;
		max-width: none;
	}

	.brera-property-story__panel {
		display: block;
		padding: 0;
		border-radius: 0;
		background: transparent;
	}

	.brera-property-story__eyebrow {
		margin-bottom: 14px;
		font-size: 9px;
	}

	.brera-property-story__title {
		margin-bottom: 18px;
		font-size: 30px;
		line-height: 1.18;
	}

	.brera-property-story__highlights {
		gap: 18px;
		margin-bottom: 18px;
		padding: 18px 16px;
		border-radius: 16px;
		background: #fff;
	}

	.brera-property-story__highlights li {
		position: relative;
		padding-left: 16px;
		color: #212121;
		font-size: 11px;
		line-height: 1.45;
	}

	.brera-property-story__highlights li::before {
		position: absolute;
		top: 0;
		left: 0;
		content: "✓";
		font-weight: 700;
	}

	.brera-property-story__details {
		padding: 18px 16px;
		border-radius: 16px;
		background: #fff;
	}

	.brera-property-story__toggle {
		display: flex;
		width: 100%;
		align-items: center;
		justify-content: space-between;
		gap: 16px;
		padding: 0;
		border: 0;
		background: transparent;
		color: #212121;
		font: inherit;
		font-size: 14px;
		font-weight: 700;
		line-height: 1.3;
		text-align: left;
		cursor: pointer;
	}

	.brera-property-story__toggle b {
		flex: 0 0 auto;
		font-size: 18px;
		font-weight: 300;
		line-height: 1;
	}

	.brera-property-story__body {
		margin-top: 22px;
		font-size: 12px;
		line-height: 1.48;
	}

	.brera-property-story__body[aria-hidden="true"] {
		display: none;
	}

	.brera-property-story__body p {
		margin-bottom: 20px;
	}
}

/* Longstay + Business */
.brera-stay-offers {
	padding: 100px 0 75px;
	background: #212121;
	color: #fff;
}

.brera-stay-offers__inner.wrapper {
	width: min(100% - 32px, 1360px);
	max-width: 1360px;
	padding: 0 15px;
}

.brera-stay-offers__header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 40px;
	margin-bottom: 28px;
}

.brera-stay-offers__title {
	max-width: 780px;
	margin: 0;
	color: #fff;
	font-size: clamp(32px, 3vw, 46px);
	font-weight: 300;
	line-height: 1.14;
	letter-spacing: normal;
}

.brera-stay-offers__intro {
	max-width: 300px;
	margin: 5px 0 0;
	color: rgba(255, 255, 255, .7);
	font-size: 15px;
	line-height: 1.45;
}

.brera-stay-offers__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
}

.brera-stay-card {
	display: flex;
	min-height: 340px;
	align-items: flex-start;
	flex-direction: column;
	padding: 30px 32px;
	border-radius: 16px;
}

.brera-stay-card--longstay {
	background: #f4f4f4;
	color: #292929;
}

.brera-stay-card--business {
	background: #eb4526;
	color: #fff;
}

.brera-stay-card__eyebrow {
	margin: 0 0 10px;
	color: #eb4526;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.3;
	text-transform: uppercase;
}

.brera-stay-card--business .brera-stay-card__eyebrow {
	color: rgba(255, 255, 255, .86);
}

.brera-stay-card__title {
	margin: 0 0 8px;
	color: inherit;
	font-size: 40px;
	font-weight: 300;
	line-height: 1.15;
	letter-spacing: normal;
}

.brera-stay-card__subtitle {
	margin: 0 0 14px;
	color: inherit;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.35;
}

.brera-stay-card__description {
	max-width: 620px;
	margin: 0 0 12px;
	color: inherit;
	font-size: 15px;
	line-height: 1.5;
}

.brera-stay-card--longstay .brera-stay-card__description {
	color: #595959;
}

.brera-stay-card__benefits {
	margin: 0 0 15px;
	padding: 0;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.45;
	list-style: none;
}

.brera-stay-card__benefits li::before {
	content: "✓";
	margin-right: 5px;
}

.brera-stay-card__cta {
	display: inline-flex;
	min-height: 52px;
	align-items: center;
	justify-content: center;
	gap: 13px;
	margin-top: auto;
	padding: 12px 24px;
	border-radius: 999px;
	background: #eb4526;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
}

.brera-stay-card--business .brera-stay-card__cta {
	background: #fff;
	color: #eb4526;
}

.brera-stay-card__cta:hover,
.brera-stay-card__cta:focus-visible {
	transform: translateY(-1px);
}

.brera-stay-card--longstay .brera-stay-card__cta:hover,
.brera-stay-card--longstay .brera-stay-card__cta:focus-visible {
	color: #fff;
}

.brera-stay-card--business .brera-stay-card__cta:hover,
.brera-stay-card--business .brera-stay-card__cta:focus-visible {
	color: #eb4526;
}

.brera-stay-card__cta img {
	width: 17px;
	height: auto;
}

@media (max-width: 767px) {
	.brera-stay-offers {
		padding: 52px 0 56px;
	}

	.brera-stay-offers__title {
		font-size: clamp(30px, 3vw, 46px);
	}

	.brera-stay-offers__header {
		flex-direction: column;
		gap: 14px;
	}

	.brera-stay-offers__intro {
		max-width: 520px;
		margin-top: 0;
		font-size: 11px;
	}

	.brera-stay-offers__grid {
		grid-template-columns: 1fr;
	}

	.brera-stay-card {
		min-height: 0;
		padding: 24px;
	}

	.brera-stay-card__title {
		font-size: 29px;
	}

	.brera-stay-card__subtitle {
		font-size: 13px;
	}

	.brera-stay-card__description,
	.brera-stay-card__benefits {
		font-size: 11px;
	}
}

/* City guide + Brera news */
.brera-city-guide {
	padding: 65px 0 32px;
	background: #fff;
	color: var(--brera-section-ink);
}

.brera-city-guide__inner.wrapper {
	width: min(calc(100% - 32px), 1360px);
	max-width: 1360px;
	padding: 0 15px;
}

.brera-city-guide__header {
	margin-bottom: 32px;
}

.brera-city-guide__eyebrow,
.brera-city-news__eyebrow {
	display: block;
	margin-bottom: 8px;
	color: #666;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.25;
	text-transform: uppercase;
}

.brera-city-guide__title {
	margin: 0 0 8px;
	color: #292929;
	font-size: clamp(34px, 3vw, 42px);
	font-weight: 300;
	line-height: 1.14;
	letter-spacing: normal;
}

.brera-city-guide__intro {
	margin: 0;
	color: #666;
	font-size: 16px;
	line-height: 1.5;
}

.brera-city-guide__tips {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
	margin-bottom: 36px;
}

.brera-city-tip {
	overflow: hidden;
	border: 1px solid var(--brera-section-border);
	border-radius: 8px;
	background: #fff;
}

.brera-city-tip__image {
	display: block;
	width: 100%;
	height: 220px;
	object-fit: cover;
}

.brera-city-tip__content {
	padding: 22px 24px 24px;
}

.brera-city-tip__title {
	margin: 0 0 8px;
	color: #292929;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.3;
}

.brera-city-tip__text,
.brera-city-news__text {
	margin: 0;
	color: #595959;
	font-size: 14px;
	line-height: 1.5;
}

.brera-city-guide__link {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: var(--brera-section-orange);
	font-size: 13px;
	font-weight: 700;
	line-height: 1.3;
}

.brera-city-guide__link img {
	width: 14px;
	height: auto;
}

.brera-city-news {
	display: grid;
	grid-template-columns: minmax(260px, 300px) minmax(0, 1fr);
	align-items: center;
	gap: 32px;
	padding: 24px;
	border-radius: 8px;
	background: #f4f4f4;
}

.brera-city-news__image {
	display: block;
	width: 100%;
	height: 212px;
	border-radius: 6px;
	object-fit: cover;
}

.brera-city-news__title {
	margin: 0 0 8px;
	color: #292929;
	font-size: clamp(24px, 2.25vw, 30px);
	font-weight: 300;
	line-height: 1.2;
	letter-spacing: normal;
}

.brera-city-news__resources {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 14px;
	margin: 0;
}

.brera-city-news__resources a {
	color: var(--brera-section-orange);
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
}

.brera-city-news__text {
	margin-bottom: 20px;
}

@media (max-width: 767px) {
	.brera-city-guide {
		padding: 56px 0 64px;
	}

	.brera-city-guide__tips,
	.brera-city-news {
		grid-template-columns: 1fr;
	}

	.brera-city-tip__image {
		height: 210px;
	}

	.brera-city-news {
		gap: 20px;
		padding: 16px;
	}

	.brera-city-news__image {
		height: 220px;
	}
}

/* Tabbed FAQ */
.brera-faq {
	padding: 32px 0 100px;
	background: #fff;
	color: var(--brera-section-ink);
}

.brera-faq__inner.wrapper {
	display: grid;
	width: min(calc(100% - 32px), 1360px);
	max-width: 1360px;
	grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
	align-items: start;
	gap: clamp(48px, 5vw, 72px);
	padding: 0 15px;
}

.brera-faq__eyebrow {
	display: block;
	margin-bottom: 16px;
	color: #666;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.2;
	text-transform: uppercase;
}

.brera-faq__title {
	margin: 0 0 18px;
	color: #292929;
	font-size: clamp(36px, 3.3vw, 48px);
	font-weight: 300;
	line-height: 1.08;
	letter-spacing: normal;
}

.brera-faq__intro {
	max-width: 330px;
	margin: 0 0 22px;
	color: #595959;
	font-size: 15px;
	line-height: 1.5;
}

.brera-faq__cta {
	display: inline-flex;
	min-width: 180px;
	min-height: 52px;
	align-items: center;
	justify-content: center;
	gap: 13px;
	padding: 11px 24px;
	border-radius: 999px;
	background: var(--brera-section-orange);
	color: #fff;
	font-size: 14px;
	font-weight: 700;
}

.brera-faq__cta img {
	width: 17px;
	height: auto;
}

.brera-faq__tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0 0 16px;
}

.brera-faq__tab {
	min-height: 38px;
	padding: 8px 16px;
	border: 1px solid #c7c7c7;
	border-radius: 999px;
	background: #fff;
	color: #595959;
	font: inherit;
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
	transition: border-color .2s ease, background-color .2s ease, color .2s ease;
}

.brera-faq__tab:hover,
.brera-faq__tab.is-active {
	border-color: #292929;
	background: #f4f4f4;
	color: #292929;
}

.brera-faq__tab:focus-visible,
.brera-faq__question:focus-visible,
.brera-faq__cta:focus-visible {
	outline: 2px solid var(--brera-section-orange);
	outline-offset: 3px;
}

.brera-faq__panel[hidden] {
	display: none;
}

.brera-faq__item {
	border: 1px solid #c7c7c7;
	border-radius: 4px;
	background: #fff;
	transition: background-color .25s ease;
}

.brera-faq__item + .brera-faq__item {
	margin-top: 16px;
}

.brera-faq__item.is-open {
	background: #f4f4f4;
}

.brera-faq__question {
	display: flex;
	width: 100%;
	min-height: 64px;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 18px 22px;
	border: 0;
	background: transparent;
	color: #292929;
	font: inherit;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.35;
	text-align: left;
	white-space: normal;
	cursor: pointer;
	transition: padding-bottom .25s ease;
}

.brera-faq__item.is-open .brera-faq__question {
	padding-bottom: 8px;
}

.brera-faq__question b {
	flex: 0 0 auto;
	color: var(--brera-section-orange);
	font-size: 20px;
	font-weight: 400;
	line-height: 1;
}

.brera-faq__answer {
	display: grid;
	grid-template-rows: 0fr;
	opacity: 0;
	padding: 0 22px;
	transition: grid-template-rows .28s ease, opacity .2s ease, padding-bottom .28s ease;
}

.brera-faq__item.is-open .brera-faq__answer {
	grid-template-rows: 1fr;
	opacity: 1;
	padding-bottom: 20px;
}

.brera-faq__answer p {
	min-height: 0;
	overflow: hidden;
	margin: 0;
	color: #595959;
	font-size: 14px;
	line-height: 1.55;
}

@media (max-width: 767px) {
	.brera-faq {
		padding: 56px 0 64px;
	}

	.brera-faq__inner.wrapper {
		width: 100%;
		max-width: 100%;
		grid-template-columns: 1fr;
		gap: 36px;
		margin: 0 auto;
	}

	.brera-faq__aside,
	.brera-faq__content,
	.brera-faq__panel {
		width: 100%;
		max-width: 100%;
		min-width: 0;
	}

	.brera-faq__intro {
		max-width: none;
	}

	.brera-faq__tabs {
		flex-wrap: nowrap;
		overflow-x: auto;
		padding-bottom: 4px;
		scrollbar-width: none;
	}

	.brera-faq__tabs::-webkit-scrollbar {
		display: none;
	}

	.brera-faq__tab {
		flex: 0 0 auto;
	}

	.brera-faq__item,
	.brera-faq__item.is-open {
		border: none;
		border-radius: 8px;
		background: #fff;
		box-shadow: 0 1px 6px 0 rgba(0, 0, 0, .21);
		transition: background-color .25s ease;
		padding-bottom: 14px;
	}

	.brera-faq__question,
	.brera-faq__item.is-open .brera-faq__question {
		min-height: 58px;
		padding: 16px 16px 0;
	}

	.brera-faq__answer,
	.brera-faq__item.is-open .brera-faq__answer {
		padding: 0 16px 0;
	}
}

/* Design-only elements stay hidden until their matching component enables them. */
.brera-services__header,
.brera-services__disclosure {
	display: none;
}

.mobile-toggler + .services[data-brera-services] {
	display: block;
}

.mobile-toggler:has(+ .services[data-brera-services]) {
	display: none;
}

.services[data-brera-services] {
	padding: 72px 0 80px;
	background: var(--brera-section-surface);
	color: var(--brera-section-ink);
}

.services[data-brera-services] > .wrapper {
	width: min(100% - 32px, 1360px);
	max-width: 1360px;
	padding: 0 15px;
}

.services[data-brera-services] .container {
	width: 100%;
	max-width: none;
	padding: 0;
}

.services[data-brera-services] .services__title {
	display: none;
}

.brera-services__header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 32px;
	margin-bottom: 42px;
}

.brera-services__heading {
	min-width: 0;
}

.brera-services__eyebrow {
	display: block;
	margin-bottom: 10px;
	color: var(--brera-section-orange);
	font-size: 11px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: .02em;
	text-transform: uppercase;
}

.brera-services__title {
	max-width: 850px;
	margin: 0;
	color: #292929;
	font-size: clamp(34px, 3vw, 46px);
	font-weight: 300;
	line-height: 1.08;
	letter-spacing: -.02em;
}

.brera-services__cta {
	display: inline-flex;
	min-width: 205px;
	min-height: 52px;
	align-items: center;
	justify-content: center;
	gap: 13px;
	padding: 11px 23px;
	border-radius: 999px;
	background: var(--brera-section-orange);
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none;
	white-space: nowrap;
	transition: background-color .2s ease, transform .2s ease;
}

.brera-services__cta img {
	display: block;
	width: 17px;
	height: 11px;
	flex: 0 0 auto;
}

.brera-services__cta--mobile {
	display: none;
}

.brera-services__cta:hover,
.brera-services__cta:focus-visible {
	background: #d92f19;
	color: #fff;
	transform: translateY(-1px);
}

.brera-services__cta:focus-visible,
.brera-services__disclosure summary:focus-visible {
	outline: 2px solid var(--brera-section-ink);
	outline-offset: 3px;
}

.brera-services__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	margin: 0;
}

.brera-services__grid::before,
.brera-services__grid::after {
	display: none;
	content: none;
}

.services[data-brera-services] .services__item {
	display: grid;
	grid-template-columns: 48px minmax(0, 1fr);
	gap: 18px;
	width: auto;
	max-width: none;
	min-height: 130px;
	margin: 0;
	padding: 33px 20px;
	border: 0;
	border-radius: 4px;
	background: var(--brera-section-card);
	color: var(--brera-section-ink);
	text-align: left;
	transition: box-shadow .2s ease;
}

.services[data-brera-services] .services__item:hover,
.services[data-brera-services] .services__item:has(.brera-services__disclosure[open]) {
	box-shadow: 0 8px 24px rgba(33, 33, 33, .06);
}

.services[data-brera-services] .services__item-icon {
	width: 46px;
	height: 46px;
	align-self: start;
	margin: 12px 0 0;
	object-fit: contain;
}

.services[data-brera-services] .services__item-icon--empty {
	background: #efefef;
}

.brera-services__item-content {
	display: flex;
	min-width: 0;
	min-height: 64px;
	flex-direction: column;
	align-items: flex-start;
}

.services[data-brera-services] .services__item-title {
	margin: 0 0 5px;
	color: var(--brera-section-ink);
	font-size: 13px;
	font-weight: 700;
	line-height: 1.35;
}

.services[data-brera-services] .services__item-text--legacy {
	display: none;
}

.brera-services__disclosure {
	display: block;
	width: 100%;
	margin: 0;
}

.brera-services__disclosure summary {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	margin: 0;
	list-style: none;
	cursor: pointer;
}

.brera-services__disclosure summary::-webkit-details-marker {
	display: none;
}

.brera-services__summary {
	display: block;
	margin: 0 0 7px;
	color: #666;
	font-size: 13px;
	font-weight: 400;
	line-height: 1.5;
}

.brera-services__details {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	margin: 0;
	color: var(--brera-section-orange);
	font-size: 12px;
	font-weight: 700;
	line-height: 1.3;
}

.brera-services__details b::before {
	content: '+';
	font-size: 13px;
	font-weight: 400;
}

.brera-services__disclosure[open] .brera-services__details b::before {
	content: '−';
}

.brera-services__expanded-text {
	margin-top: 14px;
	padding-top: 14px;
	border-top: 1px solid var(--brera-section-border);
	color: var(--brera-section-muted);
	font-size: 12px;
	line-height: 1.55;
}

.brera-services__expanded-text p:last-child {
	margin-bottom: 0;
}

@media (max-width: 1023px) {
	.brera-services__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.services[data-brera-services] {
		padding: 48px 0 56px;
	}

	.services[data-brera-services] > .wrapper {
		width: 100%;
	}

	.brera-services__header {
		align-items: flex-start;
		flex-direction: column;
		margin-bottom: 28px;
	}

	.brera-services__title {
		font-size: 34px;
	}

	.brera-services__cta {
		display: none;
	}

	.brera-services__cta--mobile {
		display: flex;
		width: 100%;
		min-height: 60px;
		margin-top: 14px;
	}

	.brera-services__grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.services[data-brera-services] .services__item {
		position: relative;
		display: block;
		min-height: 88px;
		padding: 18px 52px 18px 70px;
		border-radius: 14px;
		box-shadow: 0 6px 18px rgba(33, 33, 33, .08);
		cursor: pointer;
	}

	.services[data-brera-services] .services__item-icon {
		position: absolute;
		top: 26px;
		left: 18px;
		width: 34px;
		height: 34px;
		margin: 0;
	}

	.brera-services__item-content {
		display: block;
		min-height: 0;
	}

	.services[data-brera-services] .services__item-title {
		margin: 5px 0 3px;
		font-size: 13px;
		line-height: 1.2;
	}

  .brera-services__disclosure summary {
    display: block;
    outline: 0;
  }

  .services[data-brera-services] .services__item:has(.brera-services__disclosure summary:focus-visible) {
    outline: 2px solid var(--brera-section-orange);
    outline-offset: 2px;
  }

	.brera-services__summary {
		margin: 0;
		font-size: 11px;
		line-height: 1.35;
	}

	.brera-services__details {
		position: absolute;
		top: 0;
		right: 0;
		display: flex;
		width: 48px;
		height: 88px;
		align-items: center;
		justify-content: center;
		margin: 0;
		color: #595959;
		font-size: 0;
		line-height: 1;
	}

	.brera-services__details b::before {
		font-size: 20px;
		line-height: 1;
	}

	.brera-services__expanded-text {
		margin-top: 14px;
		padding-top: 14px;
		font-size: 12px;
	}

	.services[data-brera-services] .services__item:has(.brera-services__disclosure[open]) {
		padding-bottom: 20px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.brera-services__cta,
	.services[data-brera-services] .services__item {
		transition: none;
	}
}

/* Easy Self Check-in */
.brera-checkin__content,
.brera-checkin__badge {
	display: none;
}

.mobile-toggler + .steps[data-brera-checkin] {
	display: block;
}

.mobile-toggler:has(+ .steps[data-brera-checkin]) {
	display: none;
}

.steps[data-brera-checkin] {
	padding: 80px 0;
	background: #fff;
	color: var(--brera-section-ink) !important;
}

.steps[data-brera-checkin] > .wrapper {
	display: grid;
	width: min(100% - 32px, 1360px);
	max-width: 1360px;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
	align-items: center;
	gap: clamp(40px, 6vw, 88px);
	padding: 0 15px;
}

.steps[data-brera-checkin] > .wrapper > .steps__title,
.steps[data-brera-checkin] > .wrapper > .steps__subtitle,
.steps[data-brera-checkin] > .wrapper > .steps__text {
	display: none;
}

.brera-checkin__content {
	display: flex;
	min-width: 0;
	align-self: center;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	padding: 22px 0;
}

.brera-checkin__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 10px;
	padding: 7px 12px;
	border-radius: 999px;
	background: var(--brera-section-surface);
	color: #595959;
	font-size: 11px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: .02em;
	text-transform: uppercase;
}

.brera-checkin__eyebrow::before {
	width: 7px;
	height: 7px;
	flex: 0 0 auto;
	border-radius: 50%;
	background: var(--brera-section-orange);
	content: '';
}

.brera-checkin__title {
	max-width: 590px;
	margin: 0 0 18px;
	color: #292929;
	font-size: clamp(38px, 3.6vw, 52px);
	font-weight: 300;
	line-height: 1.08;
	letter-spacing: -.025em;
}

.brera-checkin__intro {
	max-width: 610px;
	margin: 0 0 18px;
	color: #595959;
	font-size: 17px;
	line-height: 1.55;
}

.brera-checkin__steps {
	display: grid;
	width: 100%;
	gap: 8px;
	margin: 0 0 26px;
	padding: 0;
	list-style: none;
	counter-reset: brera-checkin;
}

.brera-checkin__step {
	display: grid;
	min-height: 56px;
	grid-template-columns: 42px minmax(0, 1fr);
	align-items: center;
	gap: 0;
	padding: 14px 16px;
	border-radius: 4px;
	background: var(--brera-section-surface);
	counter-increment: brera-checkin;
}

.brera-checkin__step::before {
	content: '0' counter(brera-checkin);
	color: var(--brera-section-orange);
	font-size: 26px;
	font-weight: 300;
	line-height: 1;
}

.brera-checkin__step-copy {
	display: flex;
	min-width: 0;
	flex-direction: column;
	gap: 2px;
}

.brera-checkin__step-title {
	color: var(--brera-section-ink);
	font-size: 15px;
	font-weight: 700;
	line-height: 1.3;
}

.brera-checkin__step-text {
	color: #595959;
	font-size: 13px;
	line-height: 1.35;
}

.brera-checkin__cta {
	display: inline-flex;
	min-height: 52px;
	align-items: center;
	justify-content: center;
	gap: 13px;
	padding: 11px 25px;
	border-radius: 999px;
	background: var(--brera-section-orange);
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none;
	transition: background-color .2s ease, transform .2s ease;
}

.brera-checkin__cta img {
	display: block;
	width: 17px;
	height: 11px;
	flex: 0 0 auto;
}

.brera-checkin__cta:hover,
.brera-checkin__cta:focus-visible {
	background: #d92f19;
	color: #fff;
	transform: translateY(-1px);
}

.brera-checkin__cta:focus-visible {
	outline: 2px solid var(--brera-section-ink);
	outline-offset: 3px;
}

.steps[data-brera-checkin] .steps__columns {
	display: block;
	min-width: 0;
	align-self: center;
	margin: 0;
}

.steps[data-brera-checkin] .steps__columns::before,
.steps[data-brera-checkin] .steps__columns::after {
	display: none;
	content: none;
}

.steps[data-brera-checkin] .steps__columns > .col {
	width: 100%;
	max-width: none;
	padding: 0;
}

.steps[data-brera-checkin] .step {
	position: relative;
	height: auto;
	min-height: 540px;
	text-align: left;
}

.steps[data-brera-checkin] .step__image-wrapper {
	position: relative;
	width: 100%;
	height: clamp(540px, 42vw, 620px);
	min-height: 540px;
	margin: 0;
	overflow: hidden;
	border-radius: 10px;
	background: var(--brera-section-surface);
}

.steps[data-brera-checkin] .step__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.steps--count-1[data-brera-checkin] .step__image {
	border-radius: 16px;
}

.steps[data-brera-checkin] .step__text {
	display: none;
}

.brera-checkin__badge {
	position: absolute;
	right: 22px;
	bottom: 22px;
	display: grid;
	width: calc(100% - 44px);
	min-height: 76px;
	grid-template-columns: auto minmax(0, 1fr);
	align-items: center;
	gap: 14px;
	padding: 24px 20px;
	border-radius: 14px;
	background: rgba(255, 255, 255, .94);
	backdrop-filter: blur(8px);
}

.brera-checkin__badge strong {
	color: var(--brera-section-orange);
	font-size: 40px;
	font-weight: 300;
	line-height: 1;
}

.brera-checkin__badge-copy {
	display: flex;
	flex-direction: column;
	gap: 2px;
	color: var(--brera-section-ink);
	font-size: 15px;
	font-weight: 700;
	line-height: 1.35;
}

.brera-checkin__badge-copy b {
	font-weight: 700;
}

@media (max-width: 900px) {
	.steps[data-brera-checkin] > .wrapper {
		grid-template-columns: 1fr;
		gap: 36px;
	}

	.steps[data-brera-checkin] .step,
	.steps[data-brera-checkin] .step__image-wrapper {
		min-height: 480px;
	}

	.steps[data-brera-checkin] .step__image-wrapper {
		height: 480px;
	}
}

@media (max-width: 767px) {
	.steps[data-brera-checkin] {
		padding: 56px 0 64px;
	}

	.steps[data-brera-checkin] > .wrapper {
		display: grid;
		grid-template-columns: minmax(0, 1fr);
		gap: 0;
	}

	.brera-checkin__content {
		display: contents;
	}

	.brera-checkin__eyebrow {
		grid-row: 1;
		justify-self: start;
	}

	.brera-checkin__title {
		grid-row: 2;
		font-size: 34px;
	}

	.brera-checkin__intro {
		grid-row: 3;
		font-size: 12px;
	}

	.steps[data-brera-checkin] .steps__columns {
		grid-row: 4;
		margin-bottom: 22px;
	}

	.brera-checkin__steps {
		grid-row: 5;
	}

	.brera-checkin__cta {
		grid-row: 6;
		width: 100%;
	}

	.steps[data-brera-checkin] .step,
	.steps[data-brera-checkin] .step__image-wrapper {
		min-height: 250px;
	}

	.steps[data-brera-checkin] .step__image-wrapper {
		height: 250px;
	}

	.brera-checkin__badge {
		right: 14px;
		bottom: 14px;
		width: calc(100% - 28px);
		gap: 14px;
		padding: 12px 14px;
	}

	.brera-checkin__badge strong {
		font-size: 30px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.brera-checkin__cta {
		transition: none;
	}
}

/* Location map + nearby destinations */
.brera-nearby {
	padding: 64px 0 72px;
	background: var(--brera-section-surface);
	color: var(--brera-section-ink);
}

.brera-nearby__inner.wrapper {
	display: grid;
	width: min(calc(100% - 32px), 1360px);
	max-width: 1360px;
	grid-template-columns: minmax(0, .96fr) minmax(0, 1.04fr);
	align-items: stretch;
	gap: clamp(36px, 4vw, 54px);
	padding: 0 15px;
}

.brera-nearby__map {
	position: relative;
	min-height: 590px;
	overflow: hidden;
	border-radius: 10px;
	background: #e8e8e8;
}

.brera-nearby__map-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.brera-nearby__address-card {
	position: absolute;
	right: 24px;
	bottom: 24px;
	left: 24px;
	display: flex;
	min-height: 112px;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	padding: 20px 22px;
	border-radius: 12px;
	background: rgba(255, 255, 255, .95);
	box-shadow: 0 8px 28px rgba(33, 33, 33, .08);
	backdrop-filter: blur(8px);
}

.brera-nearby__address-card strong {
	margin-bottom: 5px;
	color: #292929;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.25;
}

.brera-nearby__address-card span {
	color: #595959;
	font-size: 14px;
	line-height: 1.4;
}

.brera-nearby__address-card a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 7px;
	color: var(--brera-section-orange);
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
}

.brera-nearby__address-card a img {
	display: block;
	width: 13px;
	height: 9px;
}

.brera-nearby__content {
	display: flex;
	min-width: 0;
	flex-direction: column;
}

.brera-nearby__header {
	margin: 2px 0 20px;
}

.brera-nearby__eyebrow {
	display: block;
	margin-bottom: 10px;
	color: var(--brera-section-orange);
	font-size: 12px;
	font-weight: 700;
	line-height: 1.2;
	text-transform: uppercase;
}

.brera-nearby__title {
	margin: 0 0 8px;
	color: #292929;
	font-size: clamp(34px, 3vw, 42px);
	font-weight: 300;
	line-height: 1.12;
	letter-spacing: normal;
}

.brera-nearby__intro,
.brera-nearby__note {
	color: #595959;
	line-height: 1.45;
}

.brera-nearby__intro {
	margin: 0 0 5px;
	font-size: 16px;
}

.brera-nearby__note {
	margin: 0;
	font-size: 12px;
}

.brera-nearby__actions,
.brera-nearby__note--mobile {
	display: none;
}

.brera-nearby__grid {
	display: grid;
	flex: 1 1 auto;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	grid-auto-rows: 1fr;
	gap: 14px;
}

.brera-nearby-card {
	min-width: 0;
	padding: 20px;
	border: 1px solid #efefef;
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 5px 18px rgba(33, 33, 33, .035);
}

.brera-nearby-card__header {
	display: flex;
	align-items: center;
	gap: 11px;
	margin-bottom: 20px;
}

.brera-nearby-card__icon {
	display: inline-flex;
	width: 21px;
	height: 21px;
	flex: 0 0 21px;
	align-items: center;
	justify-content: center;
	color: var(--brera-section-orange);
}

.brera-nearby-card__icon svg,
.brera-nearby-card__icon img {
	display: block;
	width: 100%;
	height: 100%;
}

.brera-nearby-card__icon svg {
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.brera-nearby-card__icon img {
	object-fit: contain;
}

.brera-nearby-card__header h3 {
	margin: 0;
	color: #292929;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: normal;
}

.brera-nearby-card__list {
	display: grid;
	gap: 16px;
	margin: 0;
}

.brera-nearby-card__list > div {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: baseline;
	gap: 14px;
}

.brera-nearby-card__list dt,
.brera-nearby-card__list dd {
	margin: 0;
	color: #595959;
	font-size: 13px;
	line-height: 1.35;
}

.brera-nearby-card__list dt {
	font-size: 14px;
}

.brera-nearby-card__list dd {
	font-weight: 700;
	text-align: right;
	white-space: nowrap;
}

@media (max-width: 1100px) {
	.brera-nearby__inner.wrapper {
		grid-template-columns: 1fr;
	}

	.brera-nearby__map {
		min-height: 500px;
	}

	.brera-nearby__content {
		min-height: 520px;
	}
}

@media (max-width: 767px) {
	.brera-property-story__highlights {
		margin-bottom: 16px !important;
	}

	.brera-nearby {
		padding: 30px 0 40px;
	}

	.brera-nearby__inner.wrapper {
		display: flex;
		width: 100%;
		max-width: none;
		flex-direction: column;
		gap: 0;
	}

	.brera-nearby__map {
		order: 2;
		display: grid;
		min-height: 0;
		overflow: visible;
		gap: 12px;
		border-radius: 0;
		background: transparent;
	}

	.brera-nearby__map-image {
		height: auto;
		aspect-ratio: 358 / 236;
		border-radius: 12px;
	}

	.brera-nearby__address-card {
		position: static;
		min-height: 0;
		padding: 12px;
		border: 1px solid var(--brera-section-border);
		border-radius: 12px;
		box-shadow: none;
		backdrop-filter: none;
	}

	.brera-nearby__address-card strong {
		margin-bottom: 3px;
		font-size: 12px;
	}

	.brera-nearby__address-card span {
		font-size: 10px;
	}

	.brera-nearby__address-card a {
		gap: 5px;
		margin-top: 5px;
		font-size: 10px;
	}

	.brera-nearby__address-card a img {
		width: 10px;
		height: 7px;
	}

	.brera-nearby__content {
		display: contents;
	}

	.brera-nearby__header {
		order: 1;
		margin: 0 0 14px;
	}

	.brera-nearby__eyebrow {
		margin-bottom: 10px;
		color: #666;
		font-size: 9px;
	}

	.brera-nearby__title {
		margin-bottom: 8px;
		font-size: 30px;
	}

	.brera-nearby__intro {
		margin: 0;
		font-size: 11px;
	}

	.brera-nearby__note--desktop {
		display: none;
	}

	.brera-nearby__grid {
		order: 3;
		grid-template-columns: 1fr;
		grid-auto-rows: auto;
		gap: 12px;
		margin-top: 12px;
	}

	.brera-nearby-card {
		padding: 16px;
		border: 0;
		border-radius: 14px;
		box-shadow: 0 4px 14px rgba(33, 33, 33, .08);
	}

	.brera-nearby-card__header {
		gap: 9px;
		margin-bottom: 14px;
	}

	.brera-nearby-card__icon {
		width: 16px;
		height: 16px;
		flex-basis: 16px;
	}

	.brera-nearby-card__header h3 {
		font-size: 15px;
	}

	.brera-nearby-card__list {
		gap: 14px;
	}

	.brera-nearby-card__list > div {
		grid-template-columns: minmax(0, 1fr) auto;
		gap: 12px;
	}

	.brera-nearby-card__list dt,
	.brera-nearby-card__list dd,
	.brera-nearby-card__list dt {
		font-size: 13px;
	}

	.brera-nearby-card__list dd {
		text-align: right;
		white-space: nowrap;
	}

	.brera-nearby__actions {
		order: 4;
		display: flex;
		flex-direction: column;
		gap: 12px;
		margin-top: 12px;
	}

	.brera-nearby__note--mobile {
		display: block;
		font-size: 11px;
	}

	.brera-nearby__cta {
		display: inline-flex;
		width: 100%;
		min-height: 40px;
		align-items: center;
		justify-content: center;
		gap: 10px;
		padding: 9px 16px;
		border-radius: 999px;
		background: var(--brera-section-orange);
		color: #fff;
		font-size: 13px;
		font-weight: 700;
		line-height: 1;
		text-decoration: none;
	}

	.brera-nearby__cta img {
		display: block;
		width: 13px;
		height: 9px;
	}
}

@media (max-width: 420px) {
	.brera-nearby__map {
		min-height: 0;
	}

	.brera-nearby-card__list > div {
		grid-template-columns: minmax(0, 1fr) auto;
		gap: 12px;
	}

	.brera-nearby-card__list dd {
		text-align: right;
	}
}

@media (max-width: 767px) {
	.floating-book-now {
		opacity: 0;
		pointer-events: none;
		transform: translateY(100%);
		transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
		visibility: hidden;
	}

	.floating-book-now.is-visible {
		opacity: 1;
		pointer-events: auto;
		transform: translateY(0);
		visibility: visible;
	}

	.floating-book-now__link {
		padding: 10px;
		font-size: 14px;
	}

	.floating-book-now__icon {
		width: 50px;
		height: 50px;
		padding: 15px;
		fill: #fff;
	}

	.floating-book-now__link-title::before {
		height: 20px;
	}
}
