.west-property,
.west-property *,
.west-property *::before,
.west-property *::after,
.west-lightbox,
.west-lightbox *,
.west-lightbox *::before,
.west-lightbox *::after {
	box-sizing: border-box;
}

.west-property {
	background: var(--west-surface-soft);
	color: var(--west-charcoal);
	font-family: var(--west-font-body);
	font-size: var(--west-step-0);
	font-weight: 400;
	line-height: 1.65;
	overflow: clip;
}

.west-shell {
	width: min(calc(100% - 3rem), var(--west-container));
	margin-inline: auto;
}

.west-property a,
.west-property button,
.west-lightbox button {
	transition: color var(--west-transition), background-color var(--west-transition), border-color var(--west-transition), transform var(--west-transition), opacity var(--west-transition);
}

.west-property a:focus-visible,
.west-property button:focus-visible,
.west-lightbox button:focus-visible {
	outline: 0.2rem solid var(--west-gold);
	outline-offset: 0.2rem;
}

.west-property h1,
.west-property h2,
.west-property h3,
.west-lightbox__title {
	margin-top: 0;
	color: var(--west-blue);
	font-family: var(--west-font-display);
	font-weight: 600;
	letter-spacing: -0.03em;
	line-height: 1.02;
}

.west-property h2 {
	margin-bottom: var(--west-space-5);
	font-size: var(--west-step-3);
}

.west-property p:last-child,
.west-property ul:last-child,
.west-property dl:last-child {
	margin-bottom: 0;
}

.west-property__breadcrumb-wrap {
	padding-top: var(--west-space-5);
	padding-bottom: var(--west-space-4);
}

.west-breadcrumb {
	display: flex;
	align-items: center;
	gap: var(--west-space-2);
	color: var(--west-text-muted);
	font-size: var(--west-step--1);
	line-height: 1.4;
}

.west-breadcrumb a {
	color: var(--west-blue);
	text-decoration: none;
}

.west-breadcrumb a:hover {
	color: var(--west-charcoal);
}

.west-gallery-section {
	margin-bottom: var(--west-space-6);
}

.west-gallery-frame {
	position: relative;
}

.west-gallery {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	grid-template-rows: repeat(2, minmax(0, 1fr));
	gap: 0.2rem;
	height: clamp(27rem, 41vw, 36rem);
	border-radius: var(--west-radius-large);
	overflow: hidden;
	background: var(--west-blue);
}

.west-gallery--count-1 {
	display: block;
}

.west-gallery--count-2,
.west-gallery--count-3 {
	grid-template-columns: 2fr 1fr;
}

.west-gallery__item {
	position: relative;
	min-width: 0;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	overflow: hidden;
	background: var(--west-blue-deep);
	cursor: zoom-in;
}

.west-gallery__item--primary {
	grid-row: 1 / -1;
}

.west-gallery__item img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--west-motion-slow) var(--west-ease-out);
}

.west-gallery__item:hover img {
	transform: scale(1.025);
}

.west-gallery__all {
	position: absolute;
	right: var(--west-space-4);
	bottom: var(--west-space-4);
	display: inline-flex;
	align-items: center;
	gap: var(--west-space-2);
	min-height: 3.25rem;
	padding: 0.8rem 1rem;
	border: 0.0625rem solid rgba(255, 255, 255, 0.62);
	border-radius: var(--west-radius-small);
	background: rgba(10, 39, 55, 0.9);
	box-shadow: 0 0.5rem 1.75rem rgba(10, 39, 55, 0.22);
	color: var(--west-white);
	font-family: var(--west-font-body);
	font-size: 0.88rem;
	font-weight: 600;
	cursor: pointer;
	backdrop-filter: blur(0.4rem);
}

.west-gallery__all span {
	display: grid;
	place-items: center;
	min-width: 1.65rem;
	height: 1.65rem;
	border-radius: 50%;
	background: var(--west-gold);
	color: var(--west-blue-deep);
	font-size: 0.75rem;
}

.west-gallery__all:hover {
	background: var(--west-blue-deep);
}

.west-gallery__mobile-count {
	display: none;
}

.west-property__intro {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: var(--west-space-6);
	align-items: end;
	padding-bottom: var(--west-space-6);
	border-bottom: 0.0625rem solid var(--west-border);
}

.west-property__intro--sparse {
	padding-bottom: var(--west-space-5);
}

.west-property__intro h1 {
	max-width: 18ch;
	margin-bottom: var(--west-space-3);
	font-size: clamp(2.875rem, 4vw, 3.5rem);
	text-wrap: balance;
}

.west-property__area {
	margin: 0;
	color: var(--west-text-muted);
	font-size: var(--west-step-1);
}

.west-property__summary,
.west-property-card__facts {
	display: flex;
	flex-wrap: wrap;
	gap: var(--west-space-2) var(--west-space-4);
	margin: var(--west-space-4) 0 0;
	padding: 0;
	list-style: none;
}

.west-property__summary li,
.west-property-card__facts li {
	position: relative;
	color: var(--west-text-muted);
}

.west-property__summary li + li::before,
.west-property-card__facts li + li::before {
	position: absolute;
	left: calc(-1 * var(--west-space-2) - 0.12rem);
	content: "·";
	color: var(--west-gold);
}

.west-property__stay-types {
	max-width: 22rem;
	padding-left: var(--west-space-5);
	border-left: 0.1875rem solid var(--west-gold);
}

.west-property__stay-types > p {
	margin: 0 0 var(--west-space-2);
	color: var(--west-text-muted);
	font-size: var(--west-step--1);
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.west-property__stay-types ul {
	display: flex;
	flex-wrap: wrap;
	gap: var(--west-space-2);
	margin: 0;
	padding: 0;
	list-style: none;
}

.west-property__stay-types li {
	padding: 0.45rem 0.75rem;
	border: 0.0625rem solid var(--west-border);
	border-radius: 999px;
	background: var(--west-white);
	color: var(--west-blue);
	font-size: var(--west-step--1);
}

.west-property__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(18rem, 23rem);
	gap: clamp(2.75rem, 5vw, 5rem);
	align-items: start;
	padding-block: var(--west-space-7) var(--west-space-9);
}

.west-property__intro--sparse + .west-property__layout {
	padding-top: var(--west-space-6);
}

.west-property__layout--wide {
	grid-template-columns: minmax(0, var(--west-reading));
}

.west-property__content {
	min-width: 0;
}

.west-section {
	max-width: var(--west-reading);
	margin-bottom: var(--west-space-8);
}

.west-section--lead {
	max-width: 40rem;
	margin-bottom: var(--west-space-5);
}

.west-section--lead .west-eyebrow {
	margin-bottom: var(--west-space-3);
}

.west-section--lead .west-section__title {
	margin-bottom: var(--west-space-3);
	font-family: var(--west-font-body);
	font-size: 0.88rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	line-height: 1.4;
	text-transform: none;
}

.west-property__lead {
	max-width: 39rem;
	color: var(--west-blue);
	font-family: var(--west-font-body);
	font-size: var(--west-step-1);
	line-height: 1.58;
	text-wrap: pretty;
}

.west-property__lead p {
	margin-top: 0;
}

.west-prose {
	color: var(--west-charcoal);
}

.west-prose > * {
	max-width: 100%;
}

.west-prose p,
.west-prose ul,
.west-prose ol {
	margin-top: 0;
	margin-bottom: var(--west-space-4);
}

.west-prose strong {
	color: var(--west-blue);
	font-family: var(--west-font-display);
	font-size: var(--west-step-1);
	font-weight: 600;
}

.west-prose a {
	color: var(--west-blue);
	text-decoration-color: var(--west-gold);
	text-decoration-thickness: 0.12rem;
	text-underline-offset: 0.2rem;
}

.west-facts {
	max-width: none;
	padding-block: var(--west-space-6);
	border-block: 0.0625rem solid var(--west-border);
}

.west-facts__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: var(--west-space-4);
	margin: 0;
}

.west-facts__item {
	min-width: 0;
}

.west-facts dt {
	margin-bottom: var(--west-space-1);
	color: var(--west-text-muted);
	font-size: var(--west-step--1);
	font-weight: 600;
}

.west-facts dd {
	margin: 0;
	color: var(--west-blue);
	font-family: var(--west-font-display);
	font-size: var(--west-step-2);
	line-height: 1;
}

.west-amenities__list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0;
	margin: 0;
	padding: 0;
	border-top: 0.0625rem solid var(--west-border);
	list-style: none;
}

.west-amenities__list li {
	display: flex;
	gap: var(--west-space-3);
	align-items: center;
	min-height: 3.75rem;
	padding: var(--west-space-2) var(--west-space-3);
	border-bottom: 0.0625rem solid var(--west-border);
}

.west-amenities__list li:nth-child(odd) {
	padding-left: 0;
}

.west-amenities__list span {
	width: 0.55rem;
	height: 0.55rem;
	flex: 0 0 auto;
	border-radius: 50%;
	background: var(--west-gold);
	box-shadow: 0 0 0 0.22rem rgba(206, 178, 97, 0.2);
}

.west-parking {
	padding: var(--west-space-6);
	border-left: 0.3rem solid var(--west-gold);
	background: color-mix(in srgb, var(--west-gold) 13%, var(--west-white));
}

.west-parking h2 {
	margin-bottom: var(--west-space-3);
}

.west-location {
	padding-top: var(--west-space-6);
	border-top: 0.0625rem solid var(--west-border);
}

.west-location__area {
	color: var(--west-blue);
	font-family: var(--west-font-display);
	font-size: var(--west-step-2);
}

.west-proof__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: var(--west-space-4);
}

.west-proof__item {
	padding: var(--west-space-5);
	border: 0.0625rem solid var(--west-border);
	background: var(--west-white);
}

.west-proof__source {
	color: var(--west-text-muted);
	font-size: var(--west-step--1);
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.west-proof__rating {
	margin: var(--west-space-2) 0;
	color: var(--west-blue);
}

.west-proof__rating strong {
	font-family: var(--west-font-display);
	font-size: var(--west-step-3);
	font-weight: 500;
}

.west-property__aside {
	position: sticky;
	top: calc(var(--west-header-height) + var(--west-space-md));
}

.west-booking-card {
	padding: clamp(1.3rem, 2vw, 1.7rem);
	border: 0.0625rem solid var(--west-border);
	border-top: 0.3rem solid var(--west-gold);
	border-radius: var(--west-radius-medium);
	background: var(--west-white);
	box-shadow: var(--west-shadow-soft);
}

.west-booking-card h3 {
	margin-bottom: var(--west-space-3);
	font-size: var(--west-text-heading-md);
	font-weight: 600;
	line-height: 1.08;
}

.west-booking-card > p:not(.west-eyebrow) {
	margin-bottom: var(--west-space-3);
	color: var(--west-text-muted);
	font-size: 0.92rem;
	line-height: 1.55;
}

.west-booking-card__engine-slot:empty {
	display: none;
}

.west-booking-card__engine-slot:not(:empty) {
	margin-bottom: var(--west-space-4);
}

.west-booking-card__actions {
	display: grid;
	gap: var(--west-space-3);
}

.west-booking-card .west-button {
	min-height: 3.45rem;
	padding-block: 0.9rem;
	font-size: 0.875rem;
}

.west-related {
	padding-block: var(--west-space-8);
	background: var(--west-blue);
}

.west-property__visual {
	background: var(--west-blue-deep);
}

.west-property__visual-media {
	height: clamp(34rem, 68vw, 58rem);
	overflow: hidden;
}

.west-property__visual-media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--west-motion-slow) var(--west-ease-out);
}

.west-property__visual-media:hover img {
	transform: scale(1.025);
}

.west-related__heading {
	display: grid;
	grid-template-columns: 1fr minmax(0, 2fr);
	gap: var(--west-space-5);
	align-items: start;
	margin-bottom: var(--west-space-6);
}

.west-related .west-eyebrow {
	color: var(--west-gold);
}

.west-related__heading h2 {
	max-width: 19ch;
	margin: 0;
	color: var(--west-white);
	font-size: var(--west-step-3);
}

.west-related__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--west-space-4);
}

.west-related__grid--count-2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	max-width: 55rem;
}

.west-related__grid--count-1 {
	grid-template-columns: minmax(0, 1fr);
	max-width: 27rem;
}

.west-property-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	background: transparent;
	color: var(--west-charcoal);
}

.west-property-card__media {
	display: block;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: var(--west-surface);
}

.west-property-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--west-motion-slow) var(--west-ease-out);
}

.west-property-card__media:hover img {
	transform: scale(1.025);
}

.west-property-card__body {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	padding: 1rem 0 0;
}

.west-property-card__topline {
	display: flex;
	justify-content: space-between;
	gap: var(--west-space-3);
	margin-bottom: 0.55rem;
	color: var(--west-text-muted);
	font-size: var(--west-step--1);
}

.west-property-card__topline p {
	margin: 0;
}

.west-property-card h3 {
	margin-bottom: 0.65rem;
	font-size: clamp(1.375rem, 1.27rem + 0.42vw, 1.6875rem);
	font-weight: 600;
	line-height: 1.12;
}

.west-property-card h3 a {
	color: var(--west-blue);
	text-decoration: none;
}

.west-property-card__facts {
	margin: 0 0 0.7rem;
	font-size: var(--west-step--1);
}

.west-property-card__link {
	display: inline-flex;
	gap: var(--west-space-2);
	align-items: center;
	color: var(--west-blue);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.025em;
	text-decoration: none;
	margin-top: auto;
}

.west-property-card__link span {
	color: var(--west-gold);
	font-size: 1rem;
	transition: transform var(--west-transition);
}

.west-property-card__link:hover {
	color: var(--west-charcoal);
}

.west-property-card__link:hover span {
	transform: translateX(0.25rem);
}

.west-mobile-action {
	display: none;
}

.west-lightbox {
	width: 100%;
	max-width: none;
	height: 100%;
	max-height: none;
	margin: 0;
	padding: 0;
	border: 0;
	background: var(--west-blue-deep);
	color: var(--west-white);
}

.west-lightbox::backdrop {
	background: rgba(10, 39, 55, 0.92);
}

.west-lightbox[open] .west-lightbox__shell {
	animation: west-lightbox-in var(--west-motion-base) var(--west-ease-out) both;
}

.west-lightbox.is-closing .west-lightbox__shell {
	animation: west-lightbox-out var(--west-motion-fast) var(--west-ease-out) both;
}

@keyframes west-lightbox-in {
	from {
		opacity: 0;
		transform: scale(0.985);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes west-lightbox-out {
	from {
		opacity: 1;
		transform: scale(1);
	}
	to {
		opacity: 0;
		transform: scale(0.985);
	}
}

.west-lightbox__shell {
	display: grid;
	grid-template-rows: auto minmax(0, 1fr) auto;
	height: 100dvh;
	padding: var(--west-space-4);
}

.west-lightbox__header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: var(--west-space-4);
	padding-bottom: var(--west-space-3);
}

.west-lightbox__title,
.west-lightbox__counter {
	margin: 0;
}

.west-lightbox__title {
	color: var(--west-white);
	font-size: var(--west-step-2);
}

.west-lightbox__counter {
	color: rgba(255, 255, 255, 0.68);
	font-family: var(--west-font-body);
	font-size: var(--west-step--1);
}

.west-lightbox__close,
.west-lightbox__nav {
	min-height: 2.75rem;
	padding: 0.7rem 1rem;
	border: 0.0625rem solid rgba(255, 255, 255, 0.38);
	border-radius: var(--west-radius-small);
	background: transparent;
	color: var(--west-white);
	font-family: var(--west-font-body);
	font-weight: 600;
	cursor: pointer;
}

.west-lightbox__close:hover,
.west-lightbox__nav:hover {
	border-color: var(--west-gold);
	background: var(--west-gold);
	color: var(--west-blue-deep);
}

.west-lightbox__stage {
	position: relative;
	min-height: 0;
}

.west-lightbox__slide {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0 6rem;
}

.west-lightbox__slide[hidden] {
	display: none;
}

.west-lightbox__slide img {
	display: block;
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: 100%;
	object-fit: contain;
}

.west-lightbox__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
}

.west-lightbox__nav--previous {
	left: 0;
}

.west-lightbox__nav--next {
	right: 0;
}

.west-lightbox__thumbs {
	display: flex;
	gap: var(--west-space-2);
	overflow-x: auto;
	padding-top: var(--west-space-3);
	scrollbar-width: thin;
}

.west-lightbox__thumb {
	width: 4.5rem;
	height: 3.25rem;
	flex: 0 0 auto;
	padding: 0;
	border: 0.125rem solid transparent;
	border-radius: var(--west-radius-small);
	overflow: hidden;
	background: transparent;
	opacity: 0.55;
	cursor: pointer;
}

.west-lightbox__thumb.is-current {
	border-color: var(--west-gold);
	opacity: 1;
}

.west-lightbox__thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

body.west-lightbox-open {
	overflow: hidden;
}

.west-property-template .menu-canvas .menu-toggle::before,
.west-property-template .menu-canvas .menu-toggle::after,
.west-property-template .menu-canvas .menu-toggle span::before {
	background-color: var(--west-white);
}

.west-property-template .menu-canvas .menu-toggle:focus-visible {
	outline: 0.2rem solid var(--west-gold);
	outline-offset: 0.25rem;
}

body.west-property-template .wrap_footer .elementor-element-ea6e747,
body.west-property-template .wrap_footer .elementor-top-section:has(.elementor-widget-qomfort_elementor_gallery_slide_2) {
	display: none !important;
}

@media (max-width: 64rem) {
	.west-property__layout {
		grid-template-columns: minmax(0, 1fr) minmax(17rem, 20rem);
		gap: var(--west-space-6);
	}

	.west-gallery {
		height: clamp(25rem, 50vw, 33rem);
	}

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

	.west-related__grid--count-3 .west-property-card:last-child:nth-child(odd) {
		grid-column: 1 / -1;
		max-width: calc(50% - var(--west-space-2));
	}
}

@media (max-width: 56.25rem) {
	.west-property__layout,
	.west-property__layout--wide {
		grid-template-columns: minmax(0, 1fr);
	}

	.west-property__aside {
		position: static;
		max-width: 32rem;
	}

	.west-property__intro {
		grid-template-columns: minmax(0, 1fr);
		align-items: start;
	}

	.west-property__stay-types {
		max-width: none;
	}

	.west-related__heading {
		grid-template-columns: 1fr;
		gap: var(--west-space-2);
	}
}

@media (max-width: 47.9375rem) {
	:root {
		--west-space-7: 3.5rem;
		--west-space-8: 4.5rem;
		--west-space-9: 6rem;
	}

	.west-shell {
		width: min(calc(100% - 2rem), var(--west-container));
	}

	.west-property--has-actions {
		padding-bottom: calc(5rem + env(safe-area-inset-bottom));
	}

	.west-property__breadcrumb-wrap {
		padding-top: var(--west-space-4);
		padding-bottom: var(--west-space-3);
	}

	.west-breadcrumb {
		overflow: hidden;
	}

	.west-breadcrumb span[aria-current="page"] {
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.west-gallery-section {
		margin-bottom: var(--west-space-5);
	}

	.west-gallery {
		display: flex;
		gap: var(--west-space-2);
		height: auto;
		overflow-x: auto;
		border-radius: 0;
		background: transparent;
		scroll-snap-type: x mandatory;
		scrollbar-width: none;
	}

	.west-gallery::-webkit-scrollbar {
		display: none;
	}

	.west-gallery__item,
	.west-gallery__item--primary {
		width: 100%;
		min-width: 100%;
		aspect-ratio: 4 / 3;
		border-radius: var(--west-radius-medium);
		scroll-snap-align: start;
	}

	.west-gallery__all {
		display: none;
	}

	.west-gallery__mobile-count {
		position: absolute;
		right: var(--west-space-3);
		bottom: var(--west-space-3);
		display: block;
		min-width: 3.1rem;
		margin: 0;
		padding: 0.35rem 0.6rem;
		border-radius: 999px;
		background: rgba(10, 39, 55, 0.88);
		color: var(--west-white);
		font-size: 0.75rem;
		line-height: 1.4;
		text-align: center;
		pointer-events: none;
		z-index: 2;
	}

	.west-property__intro {
		padding-bottom: var(--west-space-5);
	}

	.west-property__intro--sparse {
		padding-bottom: var(--west-space-4);
	}

	.west-property__intro h1 {
		max-width: none;
		font-size: clamp(2.45rem, 10.8vw, 2.875rem);
	}

	.west-property__stay-types {
		padding-left: var(--west-space-4);
	}

	.west-property__layout {
		gap: var(--west-space-6);
		padding-block: var(--west-space-6) var(--west-space-8);
	}

	.west-property__intro--sparse + .west-property__layout {
		padding-top: var(--west-space-5);
	}

	.west-section {
		margin-bottom: var(--west-space-7);
	}

	.west-facts__grid,
	.west-amenities__list,
	.west-proof__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.west-parking {
		padding: var(--west-space-5);
	}

	.west-property__aside {
		display: none;
	}

	.west-related__grid {
		grid-template-columns: minmax(0, 1fr);
		gap: var(--west-space-5);
		max-width: none;
	}

	.west-related__grid .west-property-card:last-child:nth-child(odd) {
		grid-column: auto;
		max-width: none;
	}

	.west-mobile-action {
		position: fixed;
		right: 0;
		bottom: 0;
		left: 0;
		z-index: 40;
		display: flex;
		gap: var(--west-space-3);
		align-items: center;
		padding: var(--west-space-2) var(--west-space-3) calc(var(--west-space-2) + env(safe-area-inset-bottom));
		border-top: 0.0625rem solid var(--west-border);
		background: rgba(255, 255, 255, 0.96);
		box-shadow: 0 -0.5rem 2rem rgba(17, 53, 73, 0.1);
		backdrop-filter: blur(0.75rem);
	}

	.west-mobile-action .west-button {
		min-height: 3.15rem;
		flex: 1 1 auto;
	}

	.west-mobile-action__secondary {
		flex: 0 0 auto;
		color: var(--west-blue);
		font-size: 0.83rem;
		font-weight: 700;
		text-decoration: underline;
		text-underline-offset: 0.18rem;
	}

	.west-lightbox__shell {
		padding: var(--west-space-3);
	}

	.west-lightbox__slide {
		padding: 0;
	}

	.west-lightbox__nav {
		top: auto;
		bottom: var(--west-space-3);
		transform: none;
		background: rgba(10, 39, 55, 0.82);
	}

	.west-lightbox__thumbs {
		display: none;
	}

	.west-property__visual-media {
		height: 31rem;
	}

}

@media (max-width: 30rem) {
	.west-facts__grid,
	.west-amenities__list,
	.west-proof__grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.west-amenities__list li {
		padding-left: 0;
	}

	.west-property__summary {
		display: grid;
		gap: var(--west-space-1);
	}

	.west-property__summary li + li::before {
		display: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	.west-property *,
	.west-property *::before,
	.west-property *::after,
	.west-lightbox *,
	.west-lightbox *::before,
	.west-lightbox *::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}

/* Task 2.2 — editorial property story and controlled gallery. */
.west-property h2 {
	font-family: var(--west-font-body);
	font-size: var(--west-text-heading-lg);
	font-weight: 600;
	letter-spacing: -0.035em;
	line-height: 1.05;
}

.west-property__intro h1 {
	max-width: 18ch;
	font-size: var(--west-text-display-lg);
	font-weight: 600;
	letter-spacing: -0.03em;
	line-height: 1;
	text-wrap: balance;
}

.west-gallery {
	height: clamp(30rem, 38vw, 35rem);
}

.west-property__layout {
	grid-template-columns: minmax(0, 1fr) minmax(18.75rem, 21.25rem);
	gap: clamp(3rem, 5vw, 5.5rem);
}

.west-property__content {
	max-width: none;
}

.west-property-story {
	display: grid;
	grid-template-columns: minmax(16rem, 0.86fr) minmax(0, 1.14fr);
	align-items: center;
	gap: clamp(2.25rem, 5vw, 4.5rem);
	margin-bottom: var(--west-space-9);
}

.west-property-story--text-only {
	grid-template-columns: minmax(0, 42rem);
}

.west-property-story__copy {
	max-width: 58ch;
}

.west-property-story__copy > p:not(.west-eyebrow) {
	margin: 0 0 1.15rem;
	color: var(--west-charcoal);
	font-size: var(--west-step-0);
	line-height: 1.68;
	text-wrap: pretty;
}

.west-property-story__copy h2 {
	margin-bottom: 1.5rem;
}

.west-property-story__media {
	min-width: 0;
	margin: 0;
	overflow: hidden;
	background: var(--west-surface);
}

.west-property-story__media img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	transition: transform var(--west-motion-slow) var(--west-ease-out);
}

.west-property-story__media:hover img {
	transform: scale(1.025);
}

.west-property-story__media--standalone {
	width: min(100%, 51rem);
	margin: 0 0 var(--west-space-9);
}

.west-property-story__media--standalone img {
	aspect-ratio: 3 / 2;
}

.west-property-story--features {
	grid-template-columns: minmax(0, 1.05fr) minmax(16rem, 0.95fr);
}

.west-property-story--features .west-property-story__media {
	order: -1;
}

.west-property-story__copy--features .west-section {
	max-width: none;
	margin-bottom: var(--west-space-6);
}

.west-property-story__copy--features .west-section:last-child {
	margin-bottom: 0;
}

.west-property__aside {
	top: calc(var(--west-header-height) + var(--west-space-md));
}

.west-booking-card {
	padding: 1.5rem 0;
	border: 0;
	border-top: 0.16rem solid var(--west-gold);
	border-bottom: 0.0625rem solid var(--west-border);
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.west-booking-card h3 {
	margin-bottom: 0.85rem;
	font-size: var(--west-text-heading-md);
	font-weight: 600;
}

.west-booking-card > p:not(.west-eyebrow) {
	font-size: 0.86rem;
}

.west-property__visual-media {
	height: clamp(32rem, 55vw, 48rem);
}

.west-lightbox {
	background: rgba(7, 27, 38, 0.985);
}

.west-lightbox__shell {
	grid-template-rows: auto minmax(0, 1fr) auto;
	gap: 0.75rem;
	padding: clamp(1rem, 2.2vw, 2rem) clamp(1rem, 3vw, 3rem);
}

.west-lightbox__header,
.west-lightbox__stage,
.west-lightbox__thumbs {
	width: min(84vw, 84rem);
	margin-inline: auto;
}

.west-lightbox__header {
	padding-bottom: 0.25rem;
}

.west-lightbox__title {
	font-family: var(--west-font-body);
	font-size: 0.9rem;
	font-weight: 600;
	letter-spacing: 0;
}

.west-lightbox__counter {
	font-size: 0.75rem;
}

.west-lightbox__stage {
	display: grid;
	place-items: center;
	overflow: hidden;
}

.west-lightbox__slide {
	padding: 0 4.5rem;
}

.west-lightbox__slide img {
	max-width: min(82vw, 78rem);
	max-height: 76vh;
}

.west-lightbox__slide.is-entering img {
	animation: west-lightbox-slide-in 250ms var(--west-ease-out) both;
}

@keyframes west-lightbox-slide-in {
	from {
		opacity: 0;
		transform: translateX(0.65rem) scale(0.995);
	}
	to {
		opacity: 1;
		transform: translateX(0) scale(1);
	}
}

.west-lightbox__nav {
	min-width: 3rem;
	padding-inline: 0.7rem;
	border-color: rgba(255, 255, 255, 0.24);
	background: rgba(10, 39, 55, 0.45);
	font-size: 0.78rem;
}

.west-lightbox__nav--previous {
	left: 0.25rem;
}

.west-lightbox__nav--next {
	right: 0.25rem;
}

.west-lightbox__thumbs {
	gap: 0.55rem;
	padding-top: 0.35rem;
	padding-bottom: 0.15rem;
}

.west-lightbox__thumb {
	width: 5.25rem;
	height: 4rem;
	border-width: 0.1rem;
	border-radius: 0.2rem;
}

.west-lightbox[open] .west-lightbox__shell {
	animation-duration: 280ms;
}

.west-lightbox.is-closing .west-lightbox__shell {
	animation-duration: 220ms;
}

@media (max-width: 64rem) {
	.west-property__layout {
		grid-template-columns: minmax(0, 1fr) minmax(18.75rem, 20rem);
		gap: var(--west-space-6);
	}

	.west-property-story,
	.west-property-story--features {
		grid-template-columns: minmax(0, 1fr);
	}

	.west-property-story__media,
	.west-property-story--features .west-property-story__media {
		order: 0;
	}

	.west-property-story__media img {
		aspect-ratio: 3 / 2;
	}
}

@media (max-width: 56.25rem) {
	.west-property__layout,
	.west-property__layout--wide {
		grid-template-columns: minmax(0, 1fr);
	}
}

@media (max-width: 47.9375rem) {
	.west-gallery {
		height: auto;
	}

	.west-gallery__item,
	.west-gallery__item--primary {
		height: clamp(17.5rem, 88vw, 23.75rem);
		aspect-ratio: auto;
	}

	.west-property__intro h1 {
		font-size: clamp(2.5rem, 11vw, 3rem);
	}

	.west-property-story,
	.west-property-story__media--standalone {
		margin-bottom: var(--west-space-8);
	}

	.west-property-story__media img,
	.west-property-story__media--standalone img {
		aspect-ratio: 4 / 3;
	}

	.west-lightbox__shell {
		gap: 0.5rem;
		padding: 0.85rem;
	}

	.west-lightbox__header,
	.west-lightbox__stage {
		width: 100%;
	}

	.west-lightbox__slide {
		padding: 0 0 4rem;
	}

	.west-lightbox__slide img {
		max-width: 94vw;
		max-height: 72vh;
	}

	.west-lightbox__thumbs {
		display: flex;
		width: 100%;
	}

	.west-lightbox__thumb {
		width: 4.5rem;
		height: 3.5rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.west-lightbox__slide.is-entering img {
		animation: none;
	}
}
