:root {
	--petrol: #0f3d4a;
	--teal: #3fa7b3;
	--logo-turquoise: #41b5bf;
	--logo-turquoise-soft: rgba(65, 181, 191, .18);
	--aqua: #a9d6d6;
	--sand: #e7dcc3;
	--gold: #c9a76b;
	--whatsapp: #128c4a;
	--whatsapp-dark: #075e54;
	--ink: #15323a;
	--muted: #5e7176;
	--paper: #fbfaf6;
	--white: #fff;
	--line: rgba(15, 61, 74, .14);
	--shadow: 0 22px 70px rgba(15, 61, 74, .14);
	--radius: 8px;
	--wrap: min(1160px, calc(100vw - 40px));
	--font-display: "Newsreader", Georgia, "Times New Roman", serif;
	--font-body: "Source Sans 3", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--text-xs: .8125rem;
	--text-sm: .9375rem;
	--text-base: 1rem;
	--text-md: 1.0625rem;
	--text-lg: 1.1875rem;
	--h1: 4.9rem;
	--h2: 3.25rem;
	--h3: 1.45rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	color: var(--ink);
	background: var(--paper);
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.68;
	font-weight: 400;
	letter-spacing: 0;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}
body.nav-open,
body.lightbox-open { overflow: hidden; }
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; }
h1, h2, h3 {
	color: var(--petrol);
	font-family: var(--font-display);
	font-weight: 400;
	line-height: .98;
	margin: 0;
	letter-spacing: 0;
}
h1 { font-size: var(--h1); max-width: 12ch; }
h2 { font-size: var(--h2); line-height: 1.02; }
h3 { font-size: var(--h3); line-height: 1.16; }
.wrap { width: var(--wrap); margin-inline: auto; }
.narrow { max-width: 820px; }
.skip-link {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 1000;
	background: var(--petrol);
	color: var(--white);
	padding: 10px 14px;
	transform: translateY(-140%);
}
.skip-link:focus { transform: translateY(0); }
.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
}

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	color: var(--white);
	transition: background .25s ease, box-shadow .25s ease, color .25s ease, transform .25s ease;
}
.site-header.is-scrolled,
body:not(.home) .site-header {
	background: rgba(255, 255, 255, .86);
	backdrop-filter: blur(18px);
	color: var(--petrol);
	box-shadow: 0 1px 0 var(--line);
}
.site-header.is-hidden {
	transform: translateY(-110%);
}
.site-header__inner {
	width: var(--wrap);
	min-height: 92px;
	margin-inline: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
}
.site-logo {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-weight: 600;
	letter-spacing: 0;
	max-width: 340px;
	min-height: 68px;
	flex: 0 1 340px;
}
.site-logo__image {
	display: block;
	width: auto !important;
	max-width: min(330px, 44vw);
	height: 64px !important;
	max-height: 64px;
	object-fit: contain;
	flex: 0 1 auto;
}
.site-logo--light .site-logo__image { filter: drop-shadow(0 1px 8px rgba(0, 0, 0, .18)); }
.site-logo__fallback { display: none; line-height: 1.1; }
.site-logo.is-logo-fallback .site-logo__fallback,
.footer-logo.is-logo-fallback .site-logo__fallback { display: inline; }
.logo-mark {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border: 1px solid currentColor;
	border-radius: 50%;
	font-family: var(--font-display);
	font-size: 1.25rem;
	font-weight: 500;
}
.logo-text { line-height: 1.1; }
.site-logo--color { display: none; }
.site-header.is-scrolled .site-logo--light,
body:not(.home) .site-header .site-logo--light { display: none; }
.site-header.is-scrolled .site-logo--color,
body:not(.home) .site-header .site-logo--color { display: inline-flex; }
.site-nav {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: .95rem;
	font-weight: 500;
	flex: 0 1 auto;
	justify-content: flex-end;
}
.site-nav__brand { display: none; }
.site-nav a {
	padding: 9px 12px;
	border-radius: 999px;
}
.site-nav a:hover,
.site-nav a:focus-visible { background: rgba(255, 255, 255, .16); }
.site-nav a:focus-visible {
	outline: 2px solid var(--logo-turquoise);
	outline-offset: 3px;
}
.site-header.is-scrolled .site-nav a:hover,
body:not(.home) .site-nav a:hover { background: rgba(15, 61, 74, .08); }
.nav-cta {
	border: 1px solid currentColor;
}
.nav-cta--whatsapp {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	background: var(--whatsapp);
	border-color: var(--whatsapp);
	color: var(--white);
}
.nav-cta--whatsapp:hover,
.nav-cta--whatsapp:focus-visible {
	background: var(--whatsapp-dark) !important;
	color: var(--white);
}
.nav-cta--whatsapp .palima-icon {
	width: 22px;
	height: 22px;
	align-self: center;
}
.nav-cta--whatsapp .palima-icon svg {
	display: block;
	shape-rendering: geometricPrecision;
}
.nav-toggle {
	display: none;
	width: 44px;
	height: 44px;
	border: 1px solid currentColor;
	border-radius: 50%;
	background: transparent;
	color: inherit;
	padding: 0;
}
.nav-toggle span:not(.screen-reader-text) {
	display: block;
	width: 18px;
	height: 2px;
	margin: 4px auto;
	background: currentColor;
	transition: transform .2s ease, opacity .2s ease;
}

.hero {
	position: relative;
	min-height: 94vh;
	padding: 138px 0 56px;
	display: grid;
	align-items: end;
	color: var(--white);
	background: var(--petrol);
	overflow: hidden;
}
.hero__media,
.hero__overlay {
	position: absolute;
	inset: 0;
}
.hero__media img,
.hero__media video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.hero__overlay {
	background:
		linear-gradient(180deg, rgba(15, 61, 74, .34) 0%, rgba(15, 61, 74, .10) 30%, rgba(15, 61, 74, .06) 62%, rgba(15, 61, 74, .22) 100%),
		linear-gradient(90deg, rgba(15, 61, 74, .48) 0%, rgba(15, 61, 74, .28) 34%, rgba(15, 61, 74, .08) 66%, rgba(15, 61, 74, .02) 100%);
}
.hero__content {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 410px);
	align-items: end;
	gap: 56px;
}
.hero__copy {
	position: relative;
	max-width: 820px;
	padding: 28px 30px 30px 0;
	text-shadow: 0 2px 10px rgba(4, 24, 31, .54), 0 18px 42px rgba(4, 24, 31, .34);
}
.hero__copy::before {
	content: "";
	position: absolute;
	inset: -24px -18px -22px -36px;
	z-index: -1;
	width: min(800px, calc(100% + 62px));
	border-radius: 0 var(--radius) var(--radius) 0;
	background:
		linear-gradient(90deg, rgba(15, 61, 74, .62), rgba(15, 61, 74, .42) 54%, rgba(15, 61, 74, .12) 82%, rgba(15, 61, 74, 0)),
		linear-gradient(180deg, rgba(15, 61, 74, .18), rgba(15, 61, 74, .34));
	backdrop-filter: blur(2px);
	pointer-events: none;
}
.hero h1,
.hero h2 { color: var(--white); }
.hero h1 {
	font-weight: 500;
	line-height: .98;
}
.hero h2 {
	margin-top: 22px;
	max-width: 720px;
	font-family: var(--font-body);
	font-size: 1.42rem;
	font-weight: 600;
	line-height: 1.5;
	color: rgba(255, 255, 255, .96);
}
.eyebrow,
.section-kicker {
	margin: 0 0 12px;
	color: var(--gold);
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: var(--text-sm);
	font-weight: 600;
	text-transform: none;
	letter-spacing: 0;
}
.eyebrow::after,
.section-kicker::after {
	content: "";
	display: block;
	width: 22px;
	height: 1px;
	background: var(--logo-turquoise);
	opacity: .9;
}

.quote-card {
	background: rgba(255, 255, 255, .95);
	color: var(--ink);
	border: 1px solid rgba(255, 255, 255, .56);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: 26px;
}
.quote-card h2 {
	color: var(--petrol);
	font-family: var(--font-display);
	font-size: 1.55rem;
	font-weight: 400;
	line-height: 1.1;
	margin-bottom: 18px;
}
.form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
	margin-bottom: 18px;
}
.reservation-widget {
	display: none;
	position: relative;
	margin-bottom: 16px;
}
html.has-palima-js .quote-card.is-reservation-enhanced .reservation-widget {
	display: grid;
	gap: 10px;
}
html.has-palima-js .quote-card.is-reservation-enhanced .field--native-reservation {
	display: none;
}
.reservation-dates {
	display: grid;
	grid-template-columns: 1fr 1fr;
	border: 1px solid rgba(15, 61, 74, .16);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, .82);
	overflow: hidden;
}
.reservation-cell {
	display: grid;
	gap: 5px;
	width: 100%;
	min-height: 62px;
	border: 0;
	background: rgba(255, 255, 255, .72);
	color: var(--petrol);
	padding: 12px 14px;
	text-align: left;
	font: inherit;
	cursor: pointer;
	transition: background .18s ease, box-shadow .18s ease;
}
.reservation-cell + .reservation-cell {
	border-left: 1px solid rgba(15, 61, 74, .12);
}
.reservation-cell--full {
	border: 1px solid rgba(15, 61, 74, .16);
	border-radius: var(--radius);
}
.reservation-cell span {
	color: var(--muted);
	font-size: .76rem;
	font-weight: 600;
	line-height: 1;
}
.reservation-cell strong {
	color: var(--petrol);
	font-size: .98rem;
	font-weight: 600;
	line-height: 1.2;
}
.reservation-cell:hover,
.reservation-cell:focus-visible,
.reservation-cell.is-open {
	background: var(--white);
	box-shadow: inset 0 0 0 2px var(--logo-turquoise-soft);
	outline: 0;
}
.reservation-cell.is-invalid {
	box-shadow: inset 0 0 0 2px rgba(176, 72, 62, .48);
}
.reservation-night-summary {
	margin: -2px 0 0;
	color: var(--muted);
	font-size: var(--text-sm);
	line-height: 1.35;
}
.reservation-popover {
	position: absolute;
	left: 0;
	right: 0;
	top: calc(100% + 10px);
	z-index: 20;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, .98);
	box-shadow: 0 26px 80px rgba(15, 61, 74, .18);
	padding: 16px;
}
.reservation-calendar {
	width: min(720px, calc(100vw - 40px));
	right: auto;
}
.reservation-calendar__bar {
	display: grid;
	grid-template-columns: 40px 1fr 40px;
	align-items: center;
	gap: 10px;
	margin-bottom: 12px;
}
.reservation-calendar__bar strong {
	color: var(--petrol);
	font-family: var(--font-display);
	font-size: 1.25rem;
	font-weight: 400;
	text-align: center;
}
.calendar-nav {
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	border: 1px solid var(--line);
	border-radius: 50%;
	background: var(--white);
	color: var(--petrol);
	font: inherit;
	font-size: 1.4rem;
	cursor: pointer;
}
.calendar-nav:disabled {
	cursor: not-allowed;
	opacity: .35;
}
.reservation-calendar__months {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}
.calendar-month h3 {
	font-family: var(--font-body);
	font-size: var(--text-base);
	font-weight: 600;
	line-height: 1.3;
	margin-bottom: 10px;
	text-align: center;
}
.calendar-grid {
	display: grid;
	grid-template-columns: repeat(7, minmax(0, 1fr));
	gap: 3px;
}
.calendar-weekday {
	color: var(--muted);
	font-size: .72rem;
	font-weight: 600;
	text-align: center;
}
.calendar-day {
	display: grid;
	place-items: center;
	min-height: 38px;
	border: 0;
	border-radius: 50%;
	background: transparent;
	color: var(--ink);
	font: inherit;
	font-size: var(--text-sm);
	cursor: pointer;
}
.calendar-day:hover,
.calendar-day:focus-visible {
	outline: 0;
	background: var(--logo-turquoise-soft);
}
.calendar-day.is-selected {
	background: var(--petrol);
	color: var(--white);
	box-shadow: inset 0 0 0 2px var(--logo-turquoise);
}
.calendar-day.is-in-range {
	border-radius: 0;
	background: var(--logo-turquoise-soft);
	color: var(--petrol);
}
.calendar-day.is-disabled {
	cursor: not-allowed;
	color: rgba(94, 113, 118, .35);
	text-decoration: line-through;
}
.calendar-day.is-empty {
	pointer-events: none;
}
.reservation-popover__actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: 16px;
}
.text-button {
	border: 0;
	background: transparent;
	color: var(--petrol);
	font: inherit;
	font-size: var(--text-sm);
	font-weight: 600;
	text-decoration: underline;
	text-decoration-color: var(--gold);
	text-decoration-thickness: 2px;
	text-underline-offset: 5px;
	cursor: pointer;
}
.reservation-close {
	min-height: 40px;
	padding-inline: 16px;
}
.reservation-guests {
	width: min(430px, calc(100vw - 40px));
	right: auto;
}
.guest-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 14px 0;
	border-bottom: 1px solid var(--line);
}
.guest-row strong {
	display: block;
	color: var(--petrol);
	font-weight: 600;
}
.guest-row span,
.guest-capacity {
	color: var(--muted);
	font-size: var(--text-sm);
	line-height: 1.35;
}
.guest-stepper {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}
.guest-stepper button {
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border: 1px solid rgba(15, 61, 74, .22);
	border-radius: 50%;
	background: var(--white);
	color: var(--petrol);
	font: inherit;
	font-size: 1.1rem;
	cursor: pointer;
}
.guest-stepper button:disabled {
	cursor: not-allowed;
	opacity: .35;
}
.guest-stepper > span {
	min-width: 1.5rem;
	color: var(--petrol);
	font-weight: 600;
	text-align: center;
}
.guest-capacity {
	margin: 12px 0 0;
}
.field {
	display: grid;
	gap: 7px;
	color: var(--muted);
	font-size: var(--text-sm);
	font-weight: 500;
}
.field--wide { grid-column: span 2; }
.field span {
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: var(--petrol);
	font-size: .875rem;
	font-weight: 600;
	line-height: 1.25;
}
.field small {
	color: var(--muted);
	font-size: .75rem;
	line-height: 1.2;
	margin-top: -2px;
}
input {
	width: 100%;
	min-height: 50px;
	border: 1px solid rgba(15, 61, 74, .16);
	border-radius: 7px;
	background: linear-gradient(180deg, #fff, rgba(251, 250, 246, .72));
	color: var(--ink);
	font: inherit;
	padding: 11px 13px;
	font-weight: 400;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, .82), 0 1px 0 rgba(15, 61, 74, .03);
	transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
input::placeholder {
	color: rgba(94, 113, 118, .72);
}
input:hover {
	border-color: rgba(15, 61, 74, .26);
}
input:focus,
input:focus-visible {
	outline: 0;
	border-color: var(--logo-turquoise);
	background: var(--white);
	box-shadow: 0 0 0 3px var(--logo-turquoise-soft), inset 0 1px 0 rgba(255, 255, 255, .9);
}
input:required:invalid:focus {
	border-color: rgba(176, 72, 62, .72);
	box-shadow: 0 0 0 3px rgba(176, 72, 62, .1);
}
input[type="date"] {
	position: relative;
	color: var(--petrol);
	color-scheme: light;
	padding-right: 40px;
}
input[type="date"]::-webkit-calendar-picker-indicator {
	width: 19px;
	height: 19px;
	margin-right: -2px;
	border-radius: 50%;
	cursor: pointer;
	opacity: .72;
	filter: invert(20%) sepia(28%) saturate(1028%) hue-rotate(150deg) brightness(93%) contrast(92%);
}
input[type="date"]::-webkit-calendar-picker-indicator:hover {
	opacity: 1;
}
input[type="number"] {
	font-variant-numeric: tabular-nums;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
	opacity: .5;
}
.reservation-sidebar .form-grid {
	grid-template-columns: 1fr;
}
.reservation-sidebar .field--wide {
	grid-column: auto;
}
.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-height: 46px;
	border: 1px solid transparent;
	border-radius: 999px;
	padding: 10px 18px;
	font-weight: 600;
	font-size: var(--text-sm);
	line-height: 1.1;
	cursor: pointer;
	transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-1px); }
.button:focus-visible {
	outline: 3px solid var(--logo-turquoise-soft);
	outline-offset: 3px;
}
.button--primary {
	background: var(--petrol);
	color: var(--white);
}
.button--primary:hover { background: #0a303a; }
.button--outline {
	color: var(--petrol);
	border-color: rgba(15, 61, 74, .18);
	background: rgba(255, 255, 255, .84);
	box-shadow: 0 12px 30px rgba(15, 61, 74, .07);
}
.button--outline:hover,
.button--outline:focus-visible {
	border-color: rgba(65, 181, 191, .52);
	background: rgba(65, 181, 191, .10);
	color: var(--petrol);
}
.button--whatsapp {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--whatsapp);
	color: var(--white);
	line-height: 1;
	border-color: var(--whatsapp);
}
.button--whatsapp:hover,
.button--whatsapp:focus-visible {
	background: var(--whatsapp-dark);
}
.button--whatsapp .palima-icon {
	width: 21px;
	height: 21px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 21px;
	line-height: 0;
}
.button--whatsapp .palima-icon svg {
	display: block;
	width: 21px;
	height: 21px;
	shape-rendering: geometricPrecision;
	fill: none;
	stroke: currentColor;
}
.button--whatsapp > span:not(.palima-icon) {
	display: inline-flex;
	align-items: center;
	line-height: 1.1;
}
.quote-card .button--whatsapp {
	width: 100%;
}
.sticky-whatsapp-cta {
	position: fixed;
	left: auto;
	right: max(24px, env(safe-area-inset-right));
	bottom: max(18px, env(safe-area-inset-bottom));
	width: min(340px, calc(100vw - 28px));
	z-index: 9990;
	display: inline-flex;
	min-height: 54px;
	box-shadow: 0 18px 44px rgba(7, 94, 84, .26);
}
.sticky-whatsapp-cta.is-hidden,
body.nav-open .sticky-whatsapp-cta,
body.lightbox-open .sticky-whatsapp-cta {
	opacity: 0;
	pointer-events: none;
	transform: translateY(12px);
}
.button--ghost {
	color: var(--petrol);
	border-color: var(--line);
	background: rgba(255, 255, 255, .78);
	width: 100%;
	margin-top: 12px;
}

.section { padding: 92px 0; }
.split {
	display: grid;
	grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
	gap: 64px;
	align-items: start;
}
.lead {
	font-size: var(--text-lg);
	color: var(--muted);
	max-width: 58ch;
	margin-top: 20px;
	line-height: 1.65;
}
.about-section {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(circle at 8% 18%, rgba(65, 181, 191, .18), transparent 34%),
		linear-gradient(135deg, rgba(65, 181, 191, .12), rgba(169, 214, 214, .17) 48%, rgba(251, 250, 246, .96));
	border-block: 1px solid rgba(65, 181, 191, .16);
}
.about-section__inner {
	display: grid;
	grid-template-columns: minmax(0, .94fr) minmax(360px, .72fr);
	gap: 74px;
	align-items: center;
}
.about-section__copy {
	position: relative;
	max-width: 680px;
}
.about-section__copy::after {
	content: "";
	display: block;
	width: 82px;
	height: 1px;
	margin-top: 30px;
	background: linear-gradient(90deg, var(--logo-turquoise), rgba(201, 167, 107, .7));
}
.about-section .lead {
	color: rgba(21, 50, 58, .78);
}
.trust-list {
	display: grid;
	gap: 0;
	padding: 8px 0;
}
.map-card,
.apartment-card {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
}
.trust-item {
	display: grid;
	grid-template-columns: 48px minmax(0, 1fr);
	gap: 16px;
	align-items: start;
	padding: 18px 0;
	border-bottom: 1px solid rgba(65, 181, 191, .18);
}
.trust-item:last-child {
	border-bottom: 0;
}
.trust-item h3 {
	margin: 1px 0 5px;
	font-family: var(--font-body);
	font-size: 1.04rem;
	font-weight: 600;
	line-height: 1.24;
	color: var(--petrol);
}
.trust-item p {
	color: rgba(21, 50, 58, .72);
	margin: 0;
	font-size: var(--text-sm);
	line-height: 1.52;
}

.palima-icon {
	display: inline-flex;
	width: 24px;
	height: 24px;
	flex: 0 0 auto;
	color: currentColor;
}
.palima-icon svg {
	width: 100%;
	height: 100%;
	fill: none;
	stroke: currentColor;
	stroke-width: 2.6;
	stroke-linecap: round;
	stroke-linejoin: round;
}
.trust-item .palima-icon {
	width: 42px;
	height: 42px;
	padding: 9px;
	color: var(--petrol);
	background: rgba(255, 255, 255, .72);
	border: 1px solid rgba(65, 181, 191, .32);
	border-radius: 50%;
	box-shadow: 0 12px 30px rgba(15, 61, 74, .08);
}
.trust-item:hover .palima-icon,
.amenity-list li:hover .palima-icon,
.map-card:hover .palima-icon {
	animation: palima-float .7s ease;
}
@keyframes palima-float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-4px); }
}

.section-head {
	display: grid;
	grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
	gap: 48px;
	align-items: end;
	margin-bottom: 38px;
}
.section-head p:last-child {
	color: var(--muted);
	font-size: var(--text-md);
	max-width: 62ch;
	line-height: 1.62;
}
.map-section__head {
	display: grid;
	justify-items: start;
	gap: 8px;
	margin-bottom: 48px;
}
.map-section__head .section-kicker {
	margin-bottom: 0;
}
.map-section__head h2 {
	max-width: 12ch;
}
.apartments-section .section-head {
	display: grid;
	grid-template-columns: 1fr;
	justify-items: start;
	gap: 10px;
	align-items: start;
	margin-bottom: 32px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--line);
}
.apartments-section .section-head .section-kicker {
	margin-bottom: 0;
}
.apartments-section .section-head h2 {
	max-width: 100%;
	white-space: nowrap;
	font-size: clamp(2.35rem, 4.7vw, 4.25rem);
	line-height: 1;
}
.apartments-section .section-head p:last-child {
	font-size: var(--text-base);
	max-width: 56ch;
	margin: 0;
	padding-top: 0;
}
.apartment-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}
.apartments-section__actions {
	display: flex;
	justify-content: center;
	margin-top: 34px;
}
.apartment-card {
	overflow: hidden;
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 100%;
	box-shadow: 0 18px 48px rgba(15, 61, 74, .075);
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.apartment-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	z-index: 1;
	background: linear-gradient(90deg, var(--logo-turquoise), rgba(65, 181, 191, 0));
	opacity: .58;
	pointer-events: none;
}
.apartment-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 24px 64px rgba(15, 61, 74, .12);
	border-color: rgba(65, 181, 191, .38);
}
.apartment-card__media {
	position: relative;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--sand);
}
.apartment-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .45s ease;
}
.apartment-card:hover .apartment-card__media img { transform: scale(1.035); }
.apartment-card__media span {
	position: absolute;
	left: 10px;
	bottom: 10px;
	background: rgba(255, 255, 255, .9);
	color: var(--petrol);
	border-radius: 999px;
	padding: 5px 9px;
	font-size: .75rem;
	font-weight: 500;
}
.apartment-card__body {
	padding: 20px 20px 22px;
	display: grid;
	gap: 14px;
	flex: 1;
	grid-template-rows: auto auto minmax(3.05em, auto) auto;
}
.apartment-card__head {
	display: grid;
	gap: 8px;
	align-content: start;
	min-width: 0;
}
.apartment-card__head h3 {
	align-self: start;
	font-size: clamp(1.28rem, 1.75vw, 1.48rem);
	line-height: 1.12;
	font-weight: 500;
	min-width: 0;
}
.apartment-card__head h3 a {
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.apartment-card__body p { color: var(--muted); margin: 0; }
.apartment-card__excerpt {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	font-size: var(--text-sm);
	line-height: 1.5;
}
.apartment-location,
.fact-row,
.fact-row span {
	display: flex;
	align-items: center;
	gap: 7px;
}
.apartment-location {
	color: var(--muted);
	font-size: var(--text-sm);
	font-weight: 500;
	align-items: center;
	line-height: 1.25;
	min-width: 0;
}
.apartment-location .palima-icon {
	width: 18px;
	height: 18px;
	color: var(--logo-turquoise);
}
.apartment-location span {
	display: block;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.fact-row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	align-items: center;
	padding: 11px 0;
	border-block: 1px solid rgba(15, 61, 74, .10);
	background: transparent;
	font-size: var(--text-sm);
	font-weight: 600;
	color: var(--petrol);
}
.fact-row span {
	min-height: 28px;
	line-height: 1.2;
	min-width: 0;
}
.fact-row span:only-child {
	grid-column: 1 / -1;
}
.fact-row .palima-icon {
	width: 19px;
	height: 19px;
	color: var(--logo-turquoise);
}
.fact-row--large {
	font-size: var(--text-base);
	margin-top: 24px;
}
.text-link {
	color: var(--petrol);
	font-weight: 600;
	text-decoration: underline;
	text-decoration-color: var(--logo-turquoise);
	text-decoration-thickness: 2px;
	text-underline-offset: 5px;
	align-self: end;
	margin-top: 2px;
}
.card-cta {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	width: 100%;
	min-height: 44px;
	margin-top: 2px;
	padding: 11px 14px;
	border: 1px solid rgba(15, 61, 74, .16);
	border-radius: 999px;
	background: var(--petrol);
	color: var(--white);
	font-size: var(--text-sm);
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.card-cta .palima-icon {
	width: 18px;
	height: 18px;
	color: currentColor;
}
.card-cta:hover {
	background: #0a303a;
	border-color: #0a303a;
	box-shadow: 0 12px 26px rgba(15, 61, 74, .18);
	transform: translateY(-1px);
}
.card-cta:focus-visible {
	outline: 3px solid var(--logo-turquoise-soft);
	outline-offset: 3px;
}

.properties-hero {
	padding: 104px 0 42px;
	background:
		linear-gradient(135deg, rgba(65, 181, 191, .12), rgba(231, 220, 195, .26)),
		var(--paper);
	border-bottom: 1px solid var(--line);
}
.properties-hero__inner {
	max-width: none;
}
.properties-hero h1 {
	font-size: clamp(2.7rem, 7vw, 5.4rem);
	line-height: .96;
}
.properties-hero p:last-child {
	color: var(--muted);
	font-size: var(--text-lg);
	line-height: 1.6;
	max-width: 58ch;
}
.properties-layout {
	display: grid;
	grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
	gap: 34px;
	align-items: start;
}
.property-filters {
	position: sticky;
	top: 112px;
	display: grid;
	gap: 22px;
	padding: 22px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, .88);
	box-shadow: 0 16px 42px rgba(15, 61, 74, .06);
}
.property-filters h2,
.properties-results__head h2 {
	font-family: var(--font-body);
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.25;
}
.property-filters fieldset {
	display: grid;
	gap: 8px;
	margin: 0;
	padding: 0;
	border: 0;
}
.property-filters legend {
	margin-bottom: 4px;
	color: var(--petrol);
	font-size: var(--text-sm);
	font-weight: 700;
}
.filter-pill {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 38px;
	cursor: pointer;
}
.filter-pill input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}
.filter-pill span {
	display: inline-flex;
	align-items: center;
	width: 100%;
	min-height: 38px;
	padding: 8px 12px;
	border: 1px solid rgba(15, 61, 74, .12);
	border-radius: 999px;
	background: rgba(255, 255, 255, .7);
	color: var(--muted);
	font-size: var(--text-sm);
	font-weight: 600;
	line-height: 1.2;
	transition: border-color .18s ease, background .18s ease, color .18s ease;
}
.filter-pill input:checked + span {
	border-color: rgba(65, 181, 191, .58);
	background: rgba(65, 181, 191, .14);
	color: var(--petrol);
}
.filter-pill input:focus-visible + span {
	outline: 3px solid var(--logo-turquoise-soft);
	outline-offset: 2px;
}
.filter-pill.is-disabled {
	cursor: not-allowed;
	opacity: .44;
}
.property-filters__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
}
.properties-results {
	display: grid;
	gap: 20px;
	min-width: 0;
}
.properties-results__head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	min-height: 38px;
}
.properties-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}
.empty-state {
	display: grid;
	justify-items: start;
	gap: 14px;
	padding: 32px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--white);
}
.empty-state h3 {
	font-family: var(--font-body);
	font-size: 1.15rem;
	font-weight: 700;
}
.empty-state p {
	color: var(--muted);
	margin: 0;
}

.closing-cta {
	background: var(--petrol);
	color: var(--white);
}
.closing-cta__button {
	align-self: start;
	white-space: nowrap;
	box-shadow: 0 18px 42px rgba(0, 0, 0, .18);
}
.destination-section {
	background: #fff;
	border-block: 1px solid rgba(65, 181, 191, .16);
}
.destination-grid {
	display: grid;
	grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
	gap: 58px;
	align-items: stretch;
}
.destination-media {
	border-radius: var(--radius);
	overflow: hidden;
	min-height: 100%;
	background: var(--sand);
}
.destination-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.destination-copy .entry-content {
	margin-top: 22px;
	max-width: 66ch;
	font-size: var(--text-md);
	line-height: 1.72;
}
.entry-content a {
	color: var(--petrol);
	font-weight: 600;
	text-decoration: underline;
	text-decoration-color: var(--logo-turquoise);
	text-decoration-thickness: 2px;
	text-underline-offset: 4px;
}
.closing-cta h2,
.closing-cta .section-kicker { color: var(--white); }
.closing-cta__inner {
	display: grid;
	justify-items: start;
	gap: 24px;
	max-width: 820px;
}
.closing-cta p {
	max-width: 68ch;
	color: rgba(255, 255, 255, .82);
	margin-top: 18px;
}
.closing-cta .button--primary {
	background: var(--gold);
	color: var(--petrol);
	white-space: nowrap;
}
.unified-map {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
	gap: 18px;
	align-items: start;
}
.unified-map__canvas,
.unified-map__panel {
	background: var(--white);
	border: 1px solid rgba(65, 181, 191, .18);
	border-radius: var(--radius);
	box-shadow: 0 18px 54px rgba(15, 61, 74, .08);
}
.unified-map__canvas {
	position: relative;
	display: block;
	height: 560px;
	min-height: 560px;
	overflow: hidden;
}
.unified-map__loading,
.unified-map__noscript {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	z-index: 1;
	padding: 24px;
	color: var(--petrol);
	font-weight: 600;
	text-align: center;
	background: linear-gradient(135deg, rgba(169, 214, 214, .42), rgba(231, 220, 195, .5));
}
.unified-map__canvas.is-loaded .unified-map__loading {
	display: none;
}
.unified-map .leaflet-control-attribution {
	color: var(--muted);
	background: rgba(255, 255, 255, .86);
	font-size: .7rem;
}
.unified-map .leaflet-control-attribution a {
	color: var(--petrol);
}
.palima-leaflet-marker {
	display: grid;
	place-items: center;
	width: 38px !important;
	height: 38px !important;
	box-sizing: border-box;
	border-radius: 50%;
	background: var(--petrol);
	color: var(--white);
	border: 3px solid var(--sand);
	box-shadow: 0 0 0 2px rgba(65, 181, 191, .58), 0 10px 24px rgba(15, 61, 74, .25);
	padding: 0;
	margin: 0;
	line-height: 1;
}
.palima-leaflet-marker span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	font-weight: 700;
	line-height: 1;
	margin: 0;
	padding: 0;
	transform: translateY(1px);
	font-variant-numeric: tabular-nums;
}
.palima-map-tooltip {
	border: 1px solid var(--line);
	border-radius: 6px;
	box-shadow: 0 10px 24px rgba(15, 61, 74, .12);
	color: var(--petrol);
	font-weight: 600;
	padding: 5px 8px;
}
.leaflet-container {
	font-family: inherit;
}
.leaflet-popup-content {
	color: var(--muted);
	font-size: var(--text-sm);
	line-height: 1.35;
}
.leaflet-popup-content strong {
	color: var(--petrol);
}
.leaflet-popup-content a {
	display: inline-flex;
	margin-top: 6px;
	color: var(--petrol);
	font-weight: 600;
	text-decoration: underline;
}
.unified-map__panel {
	padding: 22px;
	align-self: start;
}
.unified-map__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 12px;
}
.unified-map__list li {
	display: grid;
	grid-template-columns: 34px 1fr;
	gap: 11px;
	align-items: start;
	padding: 12px;
	border: 1px solid rgba(65, 181, 191, .16);
	border-radius: var(--radius);
}
.unified-map__list li.is-pending-coordinate {
	background: rgba(231, 220, 195, .38);
	border-color: rgba(201, 167, 107, .5);
}
.unified-map__number {
	display: grid;
	place-items: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--petrol);
	color: var(--white);
	font-weight: 700;
}
.unified-map__list li.is-pending-coordinate .unified-map__number {
	background: var(--gold);
	color: var(--petrol);
}
.unified-map__list h3 {
	font-size: 1.18rem;
	margin: 0 0 3px;
}
.unified-map__list p {
	margin: 0;
	color: var(--muted);
	font-size: var(--text-sm);
	line-height: 1.45;
}
.marker-meta {
	display: inline-flex;
	margin-top: 7px;
	color: var(--petrol);
	font-size: var(--text-xs);
	font-weight: 600;
}
.unified-map.has-partial-coordinates .marker-meta {
	color: var(--muted);
}
.map-card {
	overflow: hidden;
	padding-bottom: 18px;
}
.map-card h3,
.map-card p {
	padding-inline: 18px;
}
.map-card h3 { margin-top: 16px; }
.map-card p { color: var(--muted); margin-top: 4px; }
.map-card__visual {
	aspect-ratio: 4 / 3;
	background: linear-gradient(135deg, var(--aqua), var(--sand));
}
.map-card__visual iframe {
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}
.map-placeholder {
	height: 100%;
	display: grid;
	place-items: center;
	align-content: center;
	gap: 10px;
	color: var(--petrol);
	font-weight: 600;
}
.map-placeholder .palima-icon {
	width: 42px;
	height: 42px;
	color: var(--logo-turquoise);
}

.detail-hero {
	padding: 118px 0 48px;
	background: linear-gradient(180deg, #edf7f7, var(--paper));
}
.detail-hero__inner {
	display: grid;
	gap: 34px;
}
.detail-hero__media {
	display: grid;
	gap: 14px;
	position: relative;
}
.detail-hero__copy {
	max-width: 920px;
}
.detail-hero__copy p:not(.eyebrow) {
	color: var(--muted);
	font-size: var(--text-lg);
	line-height: 1.62;
	margin-top: 20px;
}
.hero-gallery {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) repeat(2, minmax(0, .65fr));
	grid-template-rows: repeat(2, minmax(0, 1fr));
	gap: 10px;
	height: clamp(420px, 47vw, 570px);
	min-height: 0;
}
.hero-gallery__item {
	position: relative;
	display: block;
	border-radius: 0;
	overflow: hidden;
	background: var(--sand);
	min-height: 0;
	box-shadow: 0 16px 42px rgba(15, 61, 74, .08);
}
.hero-gallery__item.is-main {
	grid-column: 1;
	grid-row: span 2;
	border-top-left-radius: var(--radius);
	border-bottom-left-radius: var(--radius);
}
.hero-gallery__item:nth-child(3) { border-top-right-radius: var(--radius); }
.hero-gallery__item:nth-child(5) { border-bottom-right-radius: var(--radius); }
.hero-gallery--count-1 .hero-gallery__item.is-main {
	border-radius: var(--radius);
}
.hero-gallery--count-2 .hero-gallery__item.is-main {
	border-top-left-radius: var(--radius);
	border-bottom-left-radius: var(--radius);
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}
.hero-gallery--count-2 .hero-gallery__item:nth-child(2) {
	border-top-right-radius: var(--radius);
	border-bottom-right-radius: var(--radius);
}
.hero-gallery--count-3 .hero-gallery__item:nth-child(2) {
	border-top-right-radius: var(--radius);
}
.hero-gallery--count-3 .hero-gallery__item:nth-child(3) {
	border-top-right-radius: 0;
	border-bottom-right-radius: var(--radius);
}
.hero-gallery--count-1,
.hero-gallery--count-2 {
	grid-template-columns: minmax(0, 1fr);
	grid-template-rows: 1fr;
}
.hero-gallery--count-2 {
	grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
}
.hero-gallery--count-1 .hero-gallery__item.is-main,
.hero-gallery--count-2 .hero-gallery__item.is-main {
	grid-column: auto;
	grid-row: auto;
}
.hero-gallery--count-3 {
	grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
}
.hero-gallery--count-4 .hero-gallery__item:nth-child(2) {
	grid-column: 2 / 4;
	border-top-right-radius: var(--radius);
}
.hero-gallery--count-4 .hero-gallery__item:nth-child(4) {
	border-top-right-radius: 0;
	border-bottom-right-radius: var(--radius);
}
.hero-gallery--count-4 .hero-gallery__item:nth-child(3) {
	border-top-right-radius: 0;
}
.hero-gallery img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .45s ease;
}
.hero-gallery__item:hover img,
.hero-gallery__item:focus-visible img {
	transform: scale(1.025);
}
.hero-gallery__item:focus-visible {
	outline: 3px solid rgba(65, 181, 191, .48);
	outline-offset: 3px;
}
.hero-gallery__all {
	position: absolute;
	right: 16px;
	bottom: 16px;
	z-index: 2;
	padding: 0;
	border: 0;
	background: transparent;
	border-radius: 0;
}
.hero-gallery__all summary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	border: 1px solid rgba(255, 255, 255, .72);
	border-radius: 999px;
	background: rgba(15, 61, 74, .86);
	color: #fff;
	backdrop-filter: blur(10px);
	padding: 8px 13px;
	font-family: var(--font-body);
	font-size: var(--text-sm);
	font-weight: 600;
	line-height: 1.1;
	cursor: pointer;
	box-shadow: 0 12px 32px rgba(15, 61, 74, .22);
	text-shadow: 0 1px 1px rgba(0, 0, 0, .16);
	transition: background .2s ease, transform .2s ease;
}
.hero-gallery__all summary:hover,
.hero-gallery__all summary:focus-visible {
	background: rgba(15, 61, 74, .96);
	transform: translateY(-1px);
}
.hero-gallery__all summary:focus-visible {
	outline: 3px solid rgba(255, 255, 255, .86);
	outline-offset: 3px;
}
.hero-gallery__all summary::-webkit-details-marker {
	display: none;
}
.hero-gallery__all-grid {
	position: absolute;
	right: 0;
	top: calc(100% + 12px);
	width: min(920px, calc(100vw - 48px));
	max-height: 72vh;
	overflow: auto;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
	padding: 12px;
	margin-top: 12px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, .98);
	box-shadow: 0 24px 72px rgba(15, 61, 74, .18);
}
.hero-gallery__all-grid a {
	display: grid;
	gap: 6px;
	color: var(--petrol);
	font-size: var(--text-xs);
	font-weight: 600;
}
.hero-gallery__all-grid img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: 6px;
	background: var(--sand);
}
.gallery-lightbox[hidden] {
	display: none;
}
.gallery-lightbox {
	position: fixed;
	inset: 0;
	z-index: 10030;
	display: grid;
	place-items: center;
	padding: max(18px, env(safe-area-inset-top)) max(18px, env(safe-area-inset-right)) max(18px, env(safe-area-inset-bottom)) max(18px, env(safe-area-inset-left));
	background: rgba(5, 24, 30, .84);
	backdrop-filter: blur(10px);
}
.gallery-lightbox__backdrop {
	position: absolute;
	inset: 0;
	border: 0;
	background: transparent;
	cursor: zoom-out;
}
.gallery-lightbox__dialog {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-rows: auto minmax(0, 1fr) auto;
	gap: 14px;
	width: min(1180px, 100%);
	max-height: min(88vh, 820px);
	color: var(--white);
}
.gallery-lightbox__bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}
.gallery-lightbox__bar strong,
.gallery-lightbox__alt {
	font-size: var(--text-sm);
	font-weight: 600;
	text-shadow: 0 1px 2px rgba(0, 0, 0, .24);
}
.gallery-lightbox__close,
.gallery-lightbox__nav {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255, 255, 255, .34);
	background: rgba(255, 255, 255, .94);
	color: var(--petrol);
	font: inherit;
	font-weight: 600;
	cursor: pointer;
	transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.gallery-lightbox__close {
	min-height: 40px;
	border-radius: 999px;
	padding: 8px 16px;
}
.gallery-lightbox__nav {
	position: absolute;
	top: 50%;
	z-index: 2;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	font-size: 2rem;
	line-height: 1;
	transform: translateY(-50%);
}
.gallery-lightbox__nav--prev { left: 14px; }
.gallery-lightbox__nav--next { right: 14px; }
.gallery-lightbox__close:hover,
.gallery-lightbox__close:focus-visible,
.gallery-lightbox__nav:hover,
.gallery-lightbox__nav:focus-visible {
	background: var(--white);
	border-color: var(--logo-turquoise);
	outline: 3px solid rgba(65, 181, 191, .34);
	outline-offset: 3px;
}
.gallery-lightbox__stage {
	position: relative;
	display: grid;
	place-items: center;
	min-height: 0;
	border-radius: var(--radius);
	overflow: hidden;
	background: rgba(15, 61, 74, .32);
	box-shadow: 0 24px 80px rgba(0, 0, 0, .32);
}
.gallery-lightbox__stage img {
	display: block;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: min(72vh, 680px);
	object-fit: contain;
}
.gallery-lightbox__alt {
	margin: 0;
	color: rgba(255, 255, 255, .86);
}
.detail-facts {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 10px;
	padding: 14px;
	border: 1px solid rgba(65, 181, 191, .16);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, .74);
	box-shadow: 0 14px 42px rgba(15, 61, 74, .06);
}
.detail-facts__item {
	display: flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
	padding: 8px 10px;
}
.detail-facts__item .palima-icon {
	width: 22px;
	height: 22px;
	flex: 0 0 22px;
	color: var(--logo-turquoise);
}
.detail-facts__item span {
	display: block;
	color: var(--muted);
	font-size: var(--text-xs);
	font-weight: 600;
	line-height: 1.2;
}
.detail-facts__item strong {
	display: block;
	color: var(--petrol);
	font-size: var(--text-sm);
	font-weight: 600;
	line-height: 1.25;
	margin-top: 2px;
}
.detail-layout {
	padding-top: 48px;
}
.detail-layout__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 370px;
	gap: 54px;
	align-items: start;
}
.detail-content {
	display: grid;
	gap: 68px;
}
.detail-content h2 { margin-bottom: 18px; }
.detail-content p {
	color: var(--muted);
	font-size: var(--text-md);
	line-height: 1.72;
}
.reservation-sidebar {
	position: sticky;
	top: 98px;
}
.reservation-sidebar .quote-card {
	border-color: var(--line);
}
.palima-apartment-product .reservation-sidebar .quote-card button.button.button--whatsapp {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	width: 100%;
	background: var(--whatsapp);
	border-color: var(--whatsapp);
	color: var(--white);
	line-height: 1;
}
.palima-apartment-product .reservation-sidebar .quote-card button.button.button--whatsapp:hover,
.palima-apartment-product .reservation-sidebar .quote-card button.button.button--whatsapp:focus-visible {
	background: var(--whatsapp-dark);
	border-color: var(--whatsapp-dark);
	color: var(--white);
}
.palima-apartment-product .reservation-sidebar .quote-card button.button.button--whatsapp .palima-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 21px;
	height: 21px;
	flex: 0 0 21px;
	line-height: 0;
}
.palima-apartment-product .reservation-sidebar .quote-card button.button.button--whatsapp .palima-icon svg {
	display: block;
	width: 21px;
	height: 21px;
}
.palima-apartment-product .reservation-sidebar .quote-card button.button.button--whatsapp span:not(.palima-icon) {
	display: inline-flex;
	align-items: center;
	line-height: 1.1;
}
.amenity-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.amenity-list li {
	display: flex;
	align-items: center;
	gap: 10px;
	min-height: 58px;
	background: var(--white);
	border: 1px solid rgba(65, 181, 191, .16);
	border-radius: var(--radius);
	padding: 13px;
	font-weight: 500;
	line-height: 1.32;
}
.amenity-list .palima-icon {
	color: var(--logo-turquoise);
	width: 24px;
	height: 24px;
	flex: 0 0 24px;
}
.map-card--wide {
	padding-bottom: 0;
}
.map-section-subtitle {
	margin: -6px 0 18px;
	color: var(--muted);
	font-size: var(--text-base);
	line-height: 1.45;
}
.map-card--wide .map-card__visual {
	aspect-ratio: 16 / 7;
}
.map-link {
	display: inline-flex;
	margin-top: 14px;
	color: var(--petrol);
	font-weight: 600;
	text-decoration: underline;
	text-decoration-color: var(--logo-turquoise);
	text-decoration-thickness: 2px;
	text-underline-offset: 5px;
}

.related-apartments {
	background: #fff;
	border-top: 1px solid rgba(65, 181, 191, .16);
}
.related-apartments .section-head {
	margin-bottom: 26px;
	grid-template-columns: 1fr;
}
.related-apartments .section-head h2 {
	max-width: none;
	white-space: nowrap;
	font-size: min(var(--h2), 3rem);
}
.related-apartments__grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}
.related-apartments__carousel {
	position: relative;
}
.related-apartments__arrow {
	display: none;
}
.related-apartments .apartment-card {
	box-shadow: 0 12px 34px rgba(15, 61, 74, .06);
}
.related-apartments .apartment-card__media {
	aspect-ratio: 16 / 9;
}
.related-apartments .apartment-card__body {
	padding: 18px;
	gap: 11px;
	grid-template-rows: auto auto minmax(3.05em, auto) auto;
}
.related-apartments .apartment-card__head h3 {
	font-size: 1.28rem;
}
.related-apartments .apartment-card__excerpt {
	font-size: var(--text-sm);
}
.simple-page {
	padding: 150px 0 90px;
	min-height: 70vh;
	background: linear-gradient(180deg, #edf7f7, var(--paper) 360px);
}
.simple-page h1 { max-width: 14ch; margin-bottom: 22px; }
.entry-content {
	color: var(--muted);
	font-size: var(--text-md);
	line-height: 1.72;
}
.legal-notice {
	display: flex;
	gap: 12px;
	align-items: start;
	border: 1px solid rgba(65, 181, 191, .22);
	background: rgba(231, 220, 195, .42);
	border-radius: var(--radius);
	padding: 16px;
	margin: 18px 0 28px;
	color: var(--petrol);
}
.legal-notice p { margin: 0; }
.faq-list {
	display: grid;
	gap: 10px;
	margin-top: 30px;
}
details {
	background: var(--white);
	border: 1px solid rgba(65, 181, 191, .14);
	border-radius: var(--radius);
	padding: 18px 20px;
}
summary {
	cursor: pointer;
	color: var(--petrol);
	font-family: var(--font-display);
	font-size: 1.24rem;
	font-weight: 400;
	line-height: 1.25;
}
details p {
	margin: 12px 0 0;
	color: var(--muted);
	line-height: 1.64;
}

.site-footer {
	background: #f0ece1;
	border-top: 1px solid var(--line);
	padding: 58px 0 26px;
	color: var(--muted);
}
.site-footer__grid {
	display: grid;
	grid-template-columns: 1.1fr .8fr 1.1fr;
	gap: 52px;
}
.site-footer h2 {
	font-family: var(--font-body);
	font-size: var(--text-base);
	font-weight: 600;
	line-height: 1.3;
	margin-bottom: 14px;
}
.footer-logo {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--petrol);
	font-weight: 600;
	margin-bottom: 18px;
	min-height: 66px;
}
.footer-logo .site-logo__image {
	height: 62px !important;
	max-height: 62px;
	max-width: min(330px, 100%);
}
.footer-links,
.legal-links {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 8px;
}
.footer-links a,
.legal-links a {
	color: var(--petrol);
	font-weight: 500;
}
.legal-links {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	font-size: var(--text-sm);
	margin-top: 18px;
}
.footer-bottom {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	border-top: 1px solid var(--line);
	padding-top: 22px;
	margin-top: 40px;
	font-size: var(--text-sm);
}

@media (max-width: 1060px) {
	.site-header__inner { gap: 18px; }
	.site-logo {
		max-width: 300px;
		flex-basis: 300px;
	}
	.site-logo__image {
		max-width: min(290px, 38vw);
		height: 58px !important;
		max-height: 58px;
	}
	.unified-map { grid-template-columns: 1fr; }
	.apartment-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.related-apartments__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.properties-layout { grid-template-columns: 1fr; }
	.property-filters { position: static; }
	.unified-map__canvas {
		height: 440px;
		min-height: 440px;
	}
	.detail-layout__grid { grid-template-columns: 1fr; }
	.reservation-sidebar { position: static; }
}

@media (max-width: 820px) {
	:root {
		--wrap: min(100vw - 28px, 720px);
		--h1: 3.75rem;
		--h2: 2.55rem;
		--h3: 1.34rem;
	}
	.sticky-whatsapp-cta {
		left: 0;
		right: 0;
		bottom: 0;
		width: auto;
		min-height: calc(62px + env(safe-area-inset-bottom));
		border-radius: 0;
		padding: 14px 18px calc(14px + env(safe-area-inset-bottom));
	}
	.site-header__inner { min-height: 78px; }
	.site-logo {
		max-width: 280px;
		min-height: 60px;
		flex-basis: auto;
	}
	.site-logo__image {
		max-width: min(270px, 58vw);
		height: 56px !important;
		max-height: 56px;
	}
	.nav-toggle {
		display: block;
		position: relative;
		z-index: 10020;
		color: inherit;
	}
	body.nav-open .site-header {
		z-index: 10000;
		color: var(--petrol);
		background: transparent;
		box-shadow: none;
		transform: none;
	}
	.site-nav {
		position: fixed;
		inset: 0 !important;
		width: 100vw;
		min-height: 100vh;
		min-height: 100dvh;
		z-index: 10010;
		display: flex;
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
		gap: 8px;
		padding: max(28px, env(safe-area-inset-top)) max(24px, env(safe-area-inset-right)) max(28px, env(safe-area-inset-bottom)) max(24px, env(safe-area-inset-left));
		background:
			radial-gradient(circle at 16% 12%, rgba(65, 181, 191, .18), transparent 32%),
			linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(244, 250, 249, .98));
		color: var(--petrol);
		font-size: 1.22rem;
		font-weight: 500;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transform: translateY(-10px);
		transition: opacity .22s ease, visibility .22s ease, transform .22s ease;
		overflow-y: auto;
		overscroll-behavior: contain;
	}
	.site-nav__brand {
		display: inline-flex;
		align-items: center;
		min-height: 82px;
		margin: 16px 58px 26px 0;
		padding-bottom: 24px;
		border-bottom: 1px solid rgba(65, 181, 191, .2);
	}
	.site-nav__brand .site-logo__image {
		height: 58px !important;
		max-height: 58px;
		max-width: min(300px, 68vw);
	}
	.site-nav__brand .site-logo__fallback {
		display: inline;
		font-weight: 600;
	}
	.site-nav a {
		display: flex;
		align-items: center;
		justify-content: space-between;
		min-height: 56px;
		padding: 13px 2px;
		border-radius: 0;
		border-bottom: 1px solid rgba(15, 61, 74, .1);
	}
	.site-nav a:hover,
	.site-nav a:focus-visible {
		background: transparent;
		color: var(--logo-turquoise);
	}
	.site-nav .nav-cta--whatsapp {
		justify-content: center;
		margin-top: 22px;
		padding: 14px 20px;
		border-radius: 999px;
		border-bottom: 0;
		color: var(--white);
	}
	body.nav-open .site-nav {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: translateY(0);
	}
	body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
	body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
	body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
	.hero {
		min-height: auto;
		padding: 116px 0 28px;
	}
	.hero__overlay {
		background:
			linear-gradient(180deg, rgba(15, 61, 74, .38) 0%, rgba(15, 61, 74, .12) 24%, rgba(15, 61, 74, .08) 56%, rgba(15, 61, 74, .30) 100%),
			linear-gradient(90deg, rgba(15, 61, 74, .34), rgba(15, 61, 74, .08));
	}
	.hero__copy {
		padding: 20px 0 22px;
	}
	.hero__copy::before {
		inset: -16px -16px -14px;
		width: auto;
		border-radius: var(--radius);
		background:
			linear-gradient(180deg, rgba(15, 61, 74, .58), rgba(15, 61, 74, .40)),
			linear-gradient(90deg, rgba(15, 61, 74, .18), rgba(15, 61, 74, .04));
		backdrop-filter: blur(1.5px);
	}
	.hero__content,
	.split,
	.about-section__inner,
	.section-head,
	.destination-grid,
	.site-footer__grid {
		grid-template-columns: 1fr;
		display: grid;
		gap: 28px;
	}
	.about-section__inner {
		gap: 34px;
	}
	.about-section__copy::after {
		margin-top: 24px;
	}
	.destination-media {
		aspect-ratio: 5 / 4;
		min-height: 0;
	}
	.amenity-list { grid-template-columns: 1fr; }
	.apartment-grid,
	.related-apartments__grid { grid-template-columns: 1fr; }
	.apartment-card__head h3 a {
		white-space: normal;
	}
	.apartments-section .section-head h2 {
		white-space: normal;
	}
	.properties-hero {
		padding: 96px 0 30px;
	}
	.property-filters__actions {
		align-items: stretch;
		flex-direction: column;
	}
	.property-filters__actions .button,
	.property-filters__actions .text-link {
		width: 100%;
		text-align: center;
	}
	.related-apartments__carousel {
		--carousel-arrow-size: 42px;
		display: block;
	}
	.related-apartments__grid {
		display: flex;
		gap: 14px;
		overflow-x: auto;
		overscroll-behavior-x: contain;
		scroll-snap-type: x mandatory;
		scroll-padding-inline: 2px;
		-webkit-overflow-scrolling: touch;
		padding: 4px 2px 14px;
	}
	.related-apartments__grid .apartment-card {
		flex: 0 0 min(86vw, 390px);
		scroll-snap-align: start;
	}
	.related-apartments__arrow {
		position: absolute;
		top: 50%;
		z-index: 5;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: var(--carousel-arrow-size);
		height: var(--carousel-arrow-size);
		border: 1px solid rgba(65, 181, 191, .28);
		border-radius: 50%;
		background: rgba(255, 255, 255, .94);
		color: var(--petrol);
		font: inherit;
		font-size: 1.75rem;
		line-height: 1;
		cursor: pointer;
		box-shadow: 0 12px 30px rgba(15, 61, 74, .08);
		transform: translateY(-50%);
	}
	.related-apartments__arrow--prev {
		left: 10px;
	}
	.related-apartments__arrow--next {
		right: 10px;
	}
	.related-apartments__arrow:disabled {
		opacity: .38;
		cursor: default;
		box-shadow: none;
	}
	.related-apartments__arrow:focus-visible {
		outline: 3px solid var(--logo-turquoise-soft);
		outline-offset: 3px;
	}
	.related-apartments .section-head h2 {
		white-space: normal;
		font-size: var(--h2);
	}
	.section { padding: 64px 0; }
	.quote-card { padding: 18px; }
	.reservation-popover {
		position: fixed;
		inset: auto 14px 14px;
		width: auto;
		max-height: min(78vh, 680px);
		overflow: auto;
	}
	.reservation-calendar__months {
		grid-template-columns: 1fr;
	}
	.detail-hero { padding-top: 112px; }
	.hero-gallery {
		display: flex;
		height: auto;
		overflow-x: auto;
		padding-bottom: 4px;
		scroll-snap-type: x mandatory;
		scrollbar-width: thin;
	}
	.hero-gallery__item,
	.hero-gallery__item.is-main {
		flex: 0 0 82%;
		aspect-ratio: 4 / 3;
		grid-column: auto;
		grid-row: auto;
		border-radius: var(--radius);
		scroll-snap-align: start;
	}
	.hero-gallery__item.is-main {
		flex-basis: 92%;
	}
	.hero-gallery__all {
		right: 14px;
		bottom: 18px;
	}
	.hero-gallery__all-grid {
		right: auto;
		left: max(-14px, calc(100% - 92vw));
		width: min(92vw, 720px);
		max-height: none;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.gallery-lightbox__dialog {
		max-height: 92vh;
	}
	.gallery-lightbox__stage img {
		max-height: 72vh;
	}
	.detail-facts {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.footer-bottom {
		flex-direction: column;
	}
}

@media (max-width: 560px) {
	:root {
		--h1: 2.85rem;
		--h2: 2.05rem;
		--h3: 1.25rem;
	}
	.form-grid { grid-template-columns: 1fr; }
	.reservation-dates { grid-template-columns: 1fr; }
	.reservation-cell + .reservation-cell {
		border-left: 0;
		border-top: 1px solid rgba(15, 61, 74, .12);
	}
	.reservation-popover__actions {
		align-items: stretch;
		flex-direction: column;
	}
	.unified-map__canvas {
		height: 340px;
		min-height: 340px;
	}
	.field--wide { grid-column: auto; }
	.hero-gallery__item,
	.hero-gallery__item.is-main { flex-basis: 88%; }
	.related-apartments__carousel {
		--carousel-arrow-size: 38px;
	}
	.related-apartments__arrow {
		width: 38px;
		height: 38px;
	}
	.related-apartments__grid .apartment-card {
		flex-basis: min(88vw, 350px);
	}
	.hero-gallery__all-grid { grid-template-columns: 1fr; }
	.gallery-lightbox {
		padding: max(12px, env(safe-area-inset-top)) max(12px, env(safe-area-inset-right)) max(12px, env(safe-area-inset-bottom)) max(12px, env(safe-area-inset-left));
	}
	.gallery-lightbox__bar {
		align-items: flex-start;
	}
	.gallery-lightbox__close {
		min-height: 38px;
		padding: 7px 12px;
	}
	.gallery-lightbox__nav {
		width: 42px;
		height: 42px;
		background: rgba(255, 255, 255, .9);
	}
	.gallery-lightbox__nav--prev { left: 8px; }
	.gallery-lightbox__nav--next { right: 8px; }
	.gallery-lightbox__stage img {
		max-height: 68vh;
	}
	.detail-facts { grid-template-columns: 1fr; }
	.map-card--wide .map-card__visual { aspect-ratio: 4 / 3; }
	.site-logo {
		max-width: 230px;
		min-height: 52px;
	}
	.site-logo__image {
		max-width: min(220px, 58vw);
		height: 48px !important;
		max-height: 48px;
	}
	.footer-logo .site-logo__image {
		height: 52px !important;
		max-height: 52px;
		max-width: min(250px, 100%);
	}
	.logo-text { font-size: .92rem; }
}

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