:root {
	--es-paper: #f7fcf5;
	--es-white: #ffffff;
	--es-stone: #eef2eb;
	--es-ink: #171916;
	--es-charcoal: #252825;
	--es-muted: #697066;
	--es-line: #dfe7da;
	--es-leaf: #126b3a;
	--es-leaf-dark: #0a4526;
	--es-gold: #b69a57;
	--es-radius: 8px;
	--es-shadow: 0 24px 70px rgba(23, 25, 22, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
	margin: 0;
	background: var(--es-paper);
	color: var(--es-ink);
	font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	line-height: 1.6;
	overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

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

.es-container {
	width: min(100% - 40px, 1240px);
	margin-inline: auto;
}

.es-site-header {
	position: fixed;
	inset: 0 0 auto;
	z-index: 50;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.44), rgba(0, 0, 0, 0));
	color: var(--es-white);
	backdrop-filter: none;
	transition: background 0.25s ease, box-shadow 0.25s ease;
}

.es-site-header.is-scrolled {
	background: rgba(20, 22, 20, 0.58);
	backdrop-filter: blur(14px);
	box-shadow: 0 16px 50px rgba(0, 0, 0, 0.16);
}
.admin-bar .es-site-header { top: 32px; }

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

.es-header-actions {
	display: flex;
	align-items: center;
	gap: 10px;
}

.es-brand {
	font-family: Montserrat, Inter, system-ui, sans-serif;
	font-size: clamp(1.05rem, 1.8vw, 1.45rem);
	font-weight: 800;
	letter-spacing: 0.065em;
	text-transform: uppercase;
}

.custom-logo { max-height: 58px; width: auto; }
.es-default-logo {
	width: clamp(76px, 8vw, 104px);
	height: 50px;
	object-fit: contain;
}
.es-nav__list {
	list-style: none;
	display: flex;
	align-items: center;
	gap: clamp(18px, 3vw, 42px);
	margin: 0;
	padding: 0;
}

.es-nav a {
	position: relative;
	font-size: 0.92rem;
	font-weight: 600;
	letter-spacing: 0.03em;
}

.es-nav a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -8px;
	width: 100%;
	height: 2px;
	background: var(--es-gold);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.25s ease;
}

.es-nav a:hover::after { transform: scaleX(1); }

.es-nav__account { display: none; }

.es-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 26px;
	border: 1px solid transparent;
	border-radius: 999px;
	font-weight: 700;
	font-size: 0.9rem;
	transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.es-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 18px 36px rgba(18, 107, 58, 0.24), 0 0 0 5px rgba(182, 154, 87, 0.16);
}
.es-button--primary, .es-button--nav {
	background: linear-gradient(135deg, var(--es-leaf), var(--es-leaf-dark));
	color: var(--es-white);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}
.es-button--primary:hover, .es-button--nav:hover { background: var(--es-ink); }
.es-button--account {
	min-height: 44px;
	padding: 0 20px;
	border-color: rgba(255, 255, 255, 0.5);
	background: rgba(255, 255, 255, 0.1);
	color: var(--es-white);
	backdrop-filter: blur(10px);
}
.es-button--account:hover {
	background: var(--es-white);
	color: var(--es-ink);
	border-color: var(--es-white);
}
.es-button--danger {
	background: #7f1d1d;
	color: var(--es-white);
}
.es-button--danger:hover {
	background: #5f1414;
	color: var(--es-white);
}
.es-button--ghost { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.5); color: var(--es-white); }
.es-button--ghost:hover, .es-button--light { background: var(--es-white); color: var(--es-ink); }
.es-button--light:hover { background: var(--es-gold); color: var(--es-white); }
.es-button--outline {
	border-color: rgba(18, 107, 58, 0.55);
	background: rgba(247, 252, 245, 0.92);
	color: var(--es-leaf-dark);
	box-shadow: inset 0 0 0 1px rgba(18, 107, 58, 0.08);
}
.es-button--outline:hover {
	border-color: var(--es-gold);
	background: var(--es-gold);
	color: var(--es-ink);
}

.es-menu-toggle { display: none; }

.es-hero {
	position: relative;
	min-height: 860px;
	display: grid;
	align-items: center;
	padding: 150px 0 130px;
	background: var(--hero-image) center / cover no-repeat;
	color: var(--es-white);
	overflow: hidden;
}

.es-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.64), rgba(0, 0, 0, 0.32)), rgba(0, 0, 0, 0.22);
}

.es-hero-media,
.es-hero__video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	opacity: 0;
	transform: scale(1.02);
	transition: opacity 1s ease, transform 4.5s ease;
}

.es-hero-media.is-active {
	opacity: 1;
	transform: scale(1);
}

.es-hero__content {
	position: relative;
	z-index: 1;
	text-align: center;
	max-width: 980px;
}

.es-hero__copy {
	display: none;
	min-height: 315px;
	align-content: center;
	animation: es-hero-copy-in 0.75s ease both;
}

.es-hero__copy.is-active {
	display: grid;
}

.es-hero__copy--comfort {
	max-width: 760px;
	margin-right: auto;
	text-align: left;
}

.es-hero__copy--comfort .es-kicker::after,
.es-hero__copy--comfort h1,
.es-hero__copy--comfort p {
	margin-left: 0;
}

.es-hero__copy--privacy {
	max-width: 860px;
	margin-left: auto;
	padding-right: clamp(0px, 5vw, 70px);
	text-align: right;
}

.es-hero__copy--privacy .es-kicker::after,
.es-hero__copy--privacy h1,
.es-hero__copy--privacy p {
	margin-right: 0;
}

.es-hero__copy--tour h1 {
	letter-spacing: 0.04em;
}

@keyframes es-hero-copy-in {
	from {
		opacity: 0;
		transform: translateY(14px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.es-kicker {
	margin: 0 0 12px;
	color: var(--es-gold);
	font-size: 0.66rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.es-kicker--light { color: rgba(255, 255, 255, 0.78); }
.es-section .es-kicker,
.es-page-main .es-kicker {
	font-size: 0.66rem;
}
.es-hero .es-kicker::after,
.es-page-hero .es-kicker::after {
	content: "";
	display: block;
	width: 58px;
	height: 2px;
	margin: 14px auto 0;
	background: var(--es-gold);
}

h1, h2, h3 {
	margin: 0;
	font-family: "Playfair Display", Georgia, serif;
	line-height: 1.05;
	letter-spacing: 0;
}

.es-hero h1 {
	font-family: Montserrat, Inter, system-ui, sans-serif;
	font-size: clamp(2.8rem, 6vw, 5.6rem);
	font-weight: 700;
	letter-spacing: 0.01em;
	text-transform: uppercase;
	max-width: 1120px;
	margin: 0 auto 22px;
}

.es-hero__copy > p:not(.es-kicker) {
	max-width: 720px;
	margin: 0 auto 34px;
	color: rgba(255, 255, 255, 0.82);
	font-size: clamp(1rem, 2vw, 1.25rem);
}

.es-hero__actions {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 16px;
}

.es-hero__dots {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 22px;
}

.es-hero__dots button {
	width: 9px;
	height: 9px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.7);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.28);
	cursor: pointer;
	transition: width 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.es-hero__dots button.is-active {
	width: 34px;
	background: var(--es-gold);
	border-color: var(--es-gold);
}

.es-booking-panel-wrap {
	position: absolute;
	z-index: 2;
	left: 50%;
	bottom: 34px;
	transform: translateX(-50%);
	width: min(100% - 72px, 980px);
}

.es-booking-form {
	display: grid;
	grid-template-columns: 1fr 1fr 0.78fr 1.25fr 1.5fr;
	gap: 0;
	background: rgba(255, 255, 255, 0.94);
	color: var(--es-ink);
	border: 1px solid rgba(255, 255, 255, 0.65);
	border-radius: 18px;
	box-shadow: var(--es-shadow);
	border-top: 3px solid var(--es-gold);
	overflow: hidden;
}

.es-booking-form label {
	display: grid;
	gap: 6px;
	padding: 14px 16px;
	border-right: 1px solid var(--es-line);
	color: var(--es-muted);
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.es-booking-form input,
.es-booking-form select {
	width: 100%;
	border: 0;
	outline: 0;
	background: transparent;
	color: var(--es-ink);
	font-size: 0.88rem;
	font-weight: 700;
}

.es-booking-form button {
	border: 0;
	background: var(--es-leaf);
	color: var(--es-white);
	font-weight: 800;
	cursor: pointer;
}

.es-booking-form--direct {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.es-booking-mode,
.es-booking-form--direct .es-availability-status,
.es-booking-form--direct .es-booking-payment,
.es-booking-form--direct button {
	grid-column: 1 / -1;
}

.es-booking-mode {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	padding: 12px 14px;
	border-bottom: 1px solid var(--es-line);
	background: rgba(247, 252, 245, 0.78);
}

.es-booking-mode label {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 0;
	border: 0;
	font-size: 0.78rem;
	letter-spacing: 0;
	text-transform: none;
}

.es-google-login {
	margin-left: auto;
	border: 1px solid var(--es-line);
	border-radius: 999px;
	padding: 8px 12px;
	background: var(--es-white);
	color: var(--es-leaf-dark);
	font-size: 0.78rem;
	font-weight: 900;
}

.es-booking-actions-inline {
	display: grid;
	grid-template-columns: 1fr 0fr;
	overflow: hidden;
	transition: grid-template-columns 0.35s ease;
}

.es-booking-actions-inline.is-ready {
	grid-template-columns: minmax(150px, 1fr) minmax(112px, 0.82fr);
}

.es-booking-actions-inline button,
.es-booking-actions-inline a {
	display: grid;
	place-items: center;
	min-height: 100%;
	min-width: 0;
	padding: 0 16px;
	border: 0;
	font-size: 0.82rem;
	font-weight: 800;
	line-height: 1.2;
	text-align: center;
}

.es-booking-actions-inline a {
	background: var(--es-gold);
	color: var(--es-white);
	opacity: 0;
	transform: translateX(18px);
	padding-inline: 0;
	pointer-events: none;
	transition: opacity 0.25s ease, transform 0.35s ease;
}

.es-booking-actions-inline.is-ready a {
	opacity: 1;
	transform: translateX(0);
	padding-inline: 16px;
	pointer-events: auto;
}

.es-video-toggle {
	position: absolute;
	right: clamp(18px, 5vw, 76px);
	bottom: 154px;
	z-index: 3;
	min-height: 42px;
	padding: 0 18px;
	border: 1px solid rgba(255, 255, 255, 0.46);
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.28);
	color: var(--es-white);
	font-weight: 700;
	cursor: pointer;
	backdrop-filter: blur(12px);
}

.es-section { padding: clamp(70px, 9vw, 120px) 0; }
.es-section--stone { background: var(--es-stone); }
.es-split {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	gap: clamp(40px, 8vw, 96px);
	align-items: center;
}

.es-section h2,
.es-page-hero h1,
.es-apartment-hero h1 {
	font-size: clamp(2.35rem, 5vw, 5rem);
}

.es-section p,
.es-content p,
.es-content li {
	color: var(--es-muted);
	font-size: 1.04rem;
}

.es-stats {
	display: flex;
	gap: 42px;
	margin-top: 34px;
}

.es-stats strong {
	display: block;
	font-family: "Playfair Display", Georgia, serif;
	font-size: 2.6rem;
	line-height: 1;
	color: var(--es-gold);
}

.es-stats span {
	display: block;
	color: var(--es-muted);
	font-size: 0.74rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.es-photo-collage,
.es-gallery-strip,
.es-gallery-mini {
	display: grid;
	gap: 18px;
}

.es-photo-collage {
	grid-template-columns: repeat(2, 1fr);
}

.es-photo-collage div,
.es-gallery-strip div,
.es-gallery-mini div,
.es-placeholder-photo {
	min-height: 240px;
	background:
		linear-gradient(135deg, rgba(18, 107, 58, 0.16), rgba(182, 154, 87, 0.26)),
		url("../img/hero-placeholder.svg") center / cover no-repeat;
	border-radius: var(--es-radius);
	box-shadow: var(--es-shadow);
}

.es-photo-collage div:nth-child(2),
.es-photo-collage div:nth-child(3) { transform: translateY(34px); }
.es-photo-collage div:nth-child(1) { aspect-ratio: 3 / 4; }
.es-photo-collage div:nth-child(2) { aspect-ratio: 1 / 1; }
.es-photo-collage div:nth-child(3) { aspect-ratio: 1 / 1; }
.es-photo-collage div:nth-child(4) { aspect-ratio: 3 / 4; }

.es-marquee {
	overflow: hidden;
	padding: 20px 0;
	border-block: 1px solid var(--es-line);
	color: var(--es-leaf);
	background: var(--es-paper);
	white-space: nowrap;
}

.es-marquee span {
	display: inline-block;
	min-width: 200%;
	font-family: "Playfair Display", Georgia, serif;
	font-size: clamp(1.2rem, 2.8vw, 2rem);
	text-transform: uppercase;
	animation: es-marquee 28s linear infinite;
}

@keyframes es-marquee {
	to { transform: translateX(-50%); }
}

.es-section-head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 30px;
	margin-bottom: 42px;
}

.es-section-head--center {
	display: block;
	text-align: center;
	max-width: 760px;
	margin-inline: auto;
}

.es-apartments-section {
	position: relative;
	background:
		linear-gradient(90deg, rgba(247, 252, 245, 0.78), rgba(247, 252, 245, 0.5) 44%, rgba(247, 252, 245, 0.76)),
		url("../img/section-pattern.jpg") center / cover no-repeat;
	overflow: hidden;
}

.es-apartments-section::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(255, 255, 255, 0.06);
	pointer-events: none;
}

.es-apartments-section > * {
	position: relative;
	z-index: 1;
}

.es-apartments-section .es-section-head h2 {
	max-width: 760px;
	font-size: clamp(2rem, 3.4vw, 3.65rem);
	line-height: 1.04;
}

.es-apartment-slider {
	display: grid;
	gap: 22px;
}

.es-card-grid {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: minmax(340px, calc((100% - 56px) / 3));
	gap: 28px;
	overflow-x: auto;
	padding: 2px 2px 16px;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
}

.es-card-grid::-webkit-scrollbar {
	display: none;
}

.es-card-grid--archive {
	grid-auto-flow: row;
	grid-auto-columns: initial;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	overflow: visible;
}

.es-suite-card {
	scroll-snap-align: start;
	background: var(--es-white);
	border: 1px solid rgba(182, 154, 87, 0.34);
	border-radius: var(--es-radius);
	overflow: hidden;
	box-shadow: 0 14px 40px rgba(23, 25, 22, 0.07);
	cursor: pointer;
	transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.es-suite-card:hover,
.es-suite-card:focus-visible {
	transform: translateY(-5px);
	border-color: rgba(182, 154, 87, 0.54);
	box-shadow: 0 22px 52px rgba(23, 25, 22, 0.12);
	outline: 0;
}

.es-suite-card__image {
	position: relative;
	display: block;
	aspect-ratio: 4 / 5;
	overflow: hidden;
}

.es-suite-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(0.85);
	transition: transform 0.6s ease, filter 0.6s ease;
}

.es-suite-card:hover img {
	transform: scale(1.045);
	filter: saturate(1.05);
}

.es-placeholder-photo {
	display: grid;
	place-items: center;
	color: var(--es-white);
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	text-align: center;
}

.es-suite-card__body { padding: 26px; }
.es-suite-card .es-suite-card__meta {
	margin: 0 0 10px;
	color: var(--es-muted);
	font-size: 0.66rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.es-suite-card h3 {
	font-size: clamp(1.24rem, 1.8vw, 1.45rem);
	font-weight: 700;
	line-height: 1.18;
	margin-bottom: 12px;
}

.es-amenity-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 18px 0 22px;
}

.es-amenity-pills span {
	padding: 7px 10px;
	border-radius: 999px;
	background: var(--es-stone);
	color: var(--es-leaf-dark);
	font-size: 0.78rem;
	font-weight: 800;
}

.es-suite-card__footer {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	border-top: 1px solid var(--es-line);
	padding-top: 18px;
}

.es-suite-card__footer a,
.es-text-link {
	color: var(--es-leaf);
	font-weight: 900;
}

.es-suite-card__footer strong {
	color: var(--es-gold);
}

.es-suite-dots {
	display: flex;
	justify-content: center;
	gap: 10px;
}

.es-suite-dots button {
	width: 10px;
	height: 10px;
	border: 0;
	border-radius: 999px;
	background: rgba(18, 107, 58, 0.22);
	cursor: pointer;
	transition: width 0.25s ease, background 0.25s ease;
}

.es-suite-dots button.is-active {
	width: 30px;
	background: var(--es-leaf);
}

.es-reveal {
	opacity: 0;
	transform: translateY(34px);
	transition: opacity 0.72s ease, transform 0.72s ease;
	will-change: opacity, transform;
}

.es-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.es-detail-tile-grid,
.es-detail-review-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	margin: 18px 0 32px;
}

.es-detail-tile-grid div,
.es-detail-review-grid article {
	padding: 18px;
	border: 1px solid rgba(182, 154, 87, 0.28);
	border-radius: var(--es-radius);
	background: var(--es-white);
	box-shadow: 0 12px 34px rgba(23, 25, 22, 0.07);
}

.es-detail-tile-grid strong,
.es-detail-review-grid strong {
	display: block;
	color: var(--es-leaf-dark);
	font-size: 1.05rem;
}

.es-detail-tile-grid span,
.es-detail-review-grid p {
	color: var(--es-muted);
}

.es-feature-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.es-feature {
	display: flex;
	align-items: center;
	gap: 14px;
	min-height: 68px;
	padding: 18px;
	background: rgba(255, 255, 255, 0.72);
	border: 1px solid var(--es-line);
	border-radius: var(--es-radius);
	font-weight: 800;
}

.es-feature span {
	width: 14px;
	height: 14px;
	border-radius: 999px;
	background: var(--es-leaf);
	box-shadow: 0 0 0 6px rgba(18, 107, 58, 0.12);
	flex: 0 0 auto;
}

.es-benefits-section {
	position: relative;
	width: 100%;
	max-width: none;
	display: grid;
	grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
	gap: 42px;
	align-items: start;
	padding-inline: max(20px, calc((100% - 1240px) / 2));
	background:
		radial-gradient(circle at 16% 22%, rgba(185, 153, 85, 0.14), transparent 28%),
		radial-gradient(circle at 88% 72%, rgba(18, 107, 58, 0.12), transparent 30%),
		linear-gradient(135deg, rgba(255, 255, 255, 0.62), rgba(238, 244, 235, 0.58));
	overflow: visible;
}

.es-benefits-section > * {
	position: relative;
	z-index: 1;
}

.es-benefits-section h2 {
	max-width: 520px;
	font-size: clamp(1.85rem, 3vw, 3.2rem);
	line-height: 1.06;
}

.es-offer-grid {
	position: relative;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0;
	min-height: 250px;
	align-items: center;
}

.es-offer-grid a {
	position: relative;
	min-height: 190px;
	display: grid;
	align-content: space-between;
	padding: 28px;
	border: 1px solid rgba(185, 153, 85, 0.34);
	border-radius: var(--es-radius);
	background: rgba(255, 255, 255, 0.86);
	box-shadow: 0 14px 36px rgba(15, 24, 16, 0.08);
	font-family: Montserrat, Inter, system-ui, sans-serif;
	font-size: 1.6rem;
	font-weight: 800;
	overflow: hidden;
	z-index: 1;
	transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, background 0.28s ease, color 0.28s ease;
}

.es-offer-grid a:nth-child(1) {
	transform: translate(26px, 26px) rotate(-2deg);
	z-index: 2;
}

.es-offer-grid a:nth-child(2) {
	transform: translateY(-14px) rotate(1.25deg);
	z-index: 3;
}

.es-offer-grid a:nth-child(3) {
	transform: translate(-26px, 34px) rotate(-1deg);
	z-index: 1;
}

.es-offer-grid a::before {
	content: "";
	width: 44px;
	height: 3px;
	background: var(--es-gold);
	transition: width 0.28s ease, background 0.28s ease;
}

.es-offer-grid a::after {
	content: "View details";
	justify-self: start;
	min-height: 36px;
	display: inline-grid;
	place-items: center;
	margin-top: 18px;
	padding: 0 14px;
	border-radius: 999px;
	background: rgba(18, 107, 58, 0.1);
	color: var(--es-leaf-dark);
	font-family: Inter, sans-serif;
	font-size: 0.78rem;
	font-weight: 900;
	transform: translateY(8px);
	opacity: 0.82;
	transition: transform 0.28s ease, opacity 0.28s ease, background 0.28s ease, color 0.28s ease;
}

.es-offer-grid a:is(:hover, :focus-visible),
.es-offer-grid a.is-hovered {
	transform: translateY(-18px) rotate(0deg) scale(1.02) !important;
	border-color: rgba(18, 107, 58, 0.34);
	background: var(--es-leaf) !important;
	color: var(--es-white) !important;
	box-shadow: 0 28px 68px rgba(18, 107, 58, 0.28);
	z-index: 6;
	outline: 0;
}

.es-offer-grid a:is(:hover, :focus-visible)::before,
.es-offer-grid a.is-hovered::before {
	width: 84px;
	background: var(--es-white);
}

.es-offer-grid a:is(:hover, :focus-visible)::after,
.es-offer-grid a.is-hovered::after {
	transform: translateY(0);
	opacity: 1;
	background: var(--es-leaf);
	color: var(--es-white);
}

.es-offer-grid span {
	display: block;
	font-family: Inter, sans-serif;
	color: var(--es-muted);
	font-size: 0.9rem;
	font-weight: 700;
	transition: color 0.28s ease;
}

.es-offer-grid a:is(:hover, :focus-visible) span,
.es-offer-grid a.is-hovered span {
	color: rgba(255, 255, 255, 0.86) !important;
}

.es-gallery-strip {
	grid-template-columns: 1.15fr 0.9fr 1.15fr;
	align-items: stretch;
}

.es-gallery-strip div { min-height: 430px; }
.es-gallery-strip div:nth-child(2) { margin-top: 44px; }
.es-gallery-strip img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: var(--es-radius);
}

.es-review-rail {
	display: flex;
	gap: 24px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	padding-bottom: 18px;
}

.es-review {
	flex: 0 0 min(520px, 86vw);
	scroll-snap-align: start;
	background: var(--es-white);
	border: 1px solid var(--es-line);
	border-radius: var(--es-radius);
	padding: 34px;
	position: relative;
}

.es-review__rating {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	min-height: 34px;
	margin-bottom: 18px;
	padding: 0 12px;
	border-radius: 999px;
	background: rgba(185, 154, 87, 0.12);
	color: var(--es-gold);
	font-weight: 900;
}

.es-review__rating::before {
	content: "★";
	color: var(--es-gold);
}

.es-review blockquote {
	margin: 0 0 24px;
	font-family: "Playfair Display", Georgia, serif;
	font-size: 1.55rem;
	line-height: 1.32;
}

.es-review strong { display: block; }
.es-slider-buttons { display: flex; gap: 10px; }
.es-slider-buttons button {
	width: 46px;
	height: 46px;
	border: 1px solid var(--es-line);
	border-radius: 999px;
	background: var(--es-white);
	cursor: pointer;
}

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

.es-platform-grid a {
	display: grid;
	gap: 8px;
	min-height: 150px;
	padding: 28px;
	border: 1px solid rgba(182, 154, 87, 0.34);
	border-radius: var(--es-radius);
	background: var(--es-white);
	font-family: "Playfair Display", Georgia, serif;
	font-size: 1.7rem;
}

.es-platform-grid span {
	font-family: Inter, sans-serif;
	color: var(--es-muted);
	font-size: 0.88rem;
	font-weight: 800;
}

.es-platform-grid .is-featured {
	background: var(--es-leaf);
	color: var(--es-white);
}

.es-platform-grid .is-featured span { color: rgba(255, 255, 255, 0.8); }

.es-faq-section {
	background:
		linear-gradient(135deg, rgba(247, 252, 245, 0.96), rgba(255, 255, 255, 0.9)),
		radial-gradient(circle at 12% 20%, rgba(182, 154, 87, 0.16), transparent 30%);
}

.es-faq-layout {
	display: grid;
	grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
	gap: clamp(32px, 6vw, 78px);
	align-items: start;
}

.es-faq-layout > div:first-child {
	position: sticky;
	top: 116px;
}

.es-faq-layout h2 {
	font-size: clamp(1.8rem, 3.3vw, 3.35rem);
	font-weight: 650;
	line-height: 1.06;
}

.es-faq-layout .es-button {
	margin-top: 18px;
}

.es-faq-list {
	display: grid;
	gap: 14px;
}

.es-faq-list details {
	border: 1px solid rgba(18, 107, 58, 0.14);
	border-radius: var(--es-radius);
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 0 16px 42px rgba(23, 25, 22, 0.06);
	overflow: hidden;
	transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.es-faq-list details:hover,
.es-faq-list details[open] {
	transform: translateY(-2px);
	border-color: rgba(182, 154, 87, 0.44);
	box-shadow: 0 22px 54px rgba(18, 107, 58, 0.11);
}

.es-faq-list summary {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 22px 56px 22px 24px;
	color: var(--es-ink);
	font-weight: 800;
	cursor: pointer;
	list-style: none;
	overflow-wrap: anywhere;
}

.es-faq-list summary::-webkit-details-marker {
	display: none;
}

.es-faq-list summary::after {
	content: "+";
	position: absolute;
	right: 22px;
	top: 50%;
	display: grid;
	place-items: center;
	width: 26px;
	height: 26px;
	border-radius: 999px;
	background: rgba(18, 107, 58, 0.1);
	color: var(--es-leaf-dark);
	font-weight: 900;
	transform: translateY(-50%);
}

.es-faq-list details[open] summary::after {
	content: "-";
	background: var(--es-gold);
	color: var(--es-ink);
}

.es-faq-list p {
	margin: 0;
	padding: 0 24px 24px;
	color: var(--es-muted);
	font-size: 0.96rem;
	line-height: 1.7;
}

.es-newsletter {
	background: var(--es-ink);
	color: var(--es-white);
}

.es-newsletter__inner,
.es-whatsapp-band__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
}

.es-newsletter__form {
	display: flex;
	gap: 10px;
	width: min(100%, 520px);
}

.es-newsletter input {
	min-height: 52px;
	flex: 1;
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: 999px;
	padding: 0 20px;
	background: rgba(255, 255, 255, 0.08);
	color: var(--es-white);
}

.es-page-hero,
.es-apartment-hero {
	padding: 156px 0 46px;
	background: var(--es-stone);
	text-align: center;
}

.es-page-hero h1,
.es-apartment-hero h1 {
	font-family: Montserrat, Inter, system-ui, sans-serif;
	font-size: clamp(1.85rem, 3.35vw, 2.85rem);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.01em;
	line-height: 1.08;
}

.es-page-hero--about .es-container {
	text-align: center;
}

.es-page-hero--centered .es-container {
	text-align: center;
}

.es-page-hero--about h1 {
	max-width: 820px;
	margin-inline: auto;
	font-size: clamp(1.85rem, 3.35vw, 2.85rem);
	line-height: 1.08;
}

.es-page-hero--centered h1 {
	max-width: 820px;
	margin-inline: auto;
	font-size: clamp(1.85rem, 3.35vw, 2.85rem);
	line-height: 1.08;
}

.es-page-hero--centered p:not(.es-kicker) {
	max-width: 760px;
	margin-inline: auto;
	color: var(--es-muted);
	font-size: 0.98rem;
	line-height: 1.7;
}

.es-apartment-hero .es-container {
	display: grid;
	place-items: center;
	gap: 18px;
	max-width: 900px;
	text-align: center;
}

.es-apartment-hero h1 {
	max-width: 840px;
	margin-inline: auto;
	font-size: clamp(1.85rem, 3.5vw, 3.2rem);
	font-weight: 600;
	text-align: center;
	text-transform: none;
}

.es-apartment-hero p {
	max-width: 720px;
	margin-inline: auto;
	font-size: 0.95rem;
}

.es-apartment-hero strong {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding-inline: 18px;
	line-height: 1;
	text-align: center;
	font-size: 1rem;
	font-weight: 700;
}

.es-room-hero-actions {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 24px;
}

.es-room-hero-actions .es-button {
	min-height: 44px;
	padding-inline: 22px;
	font-size: 0.84rem;
}

.es-page-visual {
	margin-top: -18px;
	display: grid;
	overflow: hidden;
	border-radius: var(--es-radius);
	box-shadow: var(--es-shadow);
}

.es-page-visual img {
	width: 100%;
	height: clamp(260px, 36vw, 440px);
	object-fit: cover;
}

.es-page-visual--split {
	grid-template-columns: 1fr 1fr;
	gap: 0;
}

.es-media-gallery {
	width: min(100% - 40px, 1180px);
	margin: 0 auto;
	padding-block: 70px;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.es-media-gallery button {
	position: relative;
	min-height: 360px;
	aspect-ratio: 4 / 5;
	overflow: hidden;
	border: 0;
	border-radius: var(--es-radius);
	padding: 0;
	background: var(--es-leaf-dark);
	box-shadow: var(--es-shadow);
	cursor: pointer;
}

.es-media-gallery img,
.es-media-gallery video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.01);
	transition: transform 0.45s ease, filter 0.45s ease;
}

.es-media-gallery button > span {
	position: absolute;
	inset: 0;
	display: grid;
	align-content: end;
	gap: 8px;
	padding: 24px;
	background: linear-gradient(180deg, rgba(18, 107, 58, 0.05), rgba(18, 107, 58, 0.94));
	color: var(--es-white);
	text-align: left;
	opacity: 0;
	transition: opacity 0.28s ease;
}

.es-media-gallery button:hover > span,
.es-media-gallery button:focus-visible > span {
	opacity: 1;
}

.es-media-gallery button:hover img,
.es-media-gallery button:hover video,
.es-media-gallery button:focus-visible img,
.es-media-gallery button:focus-visible video {
	transform: scale(1.06);
	filter: saturate(1.08);
}

.es-media-gallery small {
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.72rem;
	font-weight: 900;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.es-media-gallery strong {
	font-size: clamp(1.25rem, 2vw, 1.75rem);
	line-height: 1.05;
}

.es-media-gallery em {
	max-width: 28ch;
	color: rgba(255, 255, 255, 0.82);
	font-style: normal;
	line-height: 1.45;
}

.es-media-gallery button[data-type="video"]::before {
	content: "Play";
	position: absolute;
	top: 16px;
	right: 16px;
	z-index: 1;
	border: 1px solid rgba(255, 255, 255, 0.48);
	border-radius: 999px;
	padding: 8px 14px;
	background: rgba(10, 69, 38, 0.52);
	color: var(--es-white);
	font-size: 0.72rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	backdrop-filter: blur(10px);
}

.es-gallery-lightbox[hidden] {
	display: none !important;
}

.es-gallery-lightbox {
	position: fixed;
	inset: 0;
	z-index: 999;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	grid-template-rows: 1fr auto;
	gap: 18px;
	align-items: center;
	padding: clamp(18px, 4vw, 42px);
	background: rgba(6, 20, 12, 0.9);
}

.es-gallery-lightbox__stage {
	grid-column: 2;
	display: grid;
	place-items: center;
	min-height: 0;
}

.es-gallery-lightbox__stage img,
.es-gallery-lightbox__stage video {
	max-width: min(100%, 1120px);
	max-height: 78vh;
	border-radius: var(--es-radius);
	object-fit: contain;
	box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

.es-gallery-lightbox p {
	grid-column: 2;
	margin: 0;
	color: rgba(255, 255, 255, 0.86);
	text-align: center;
	font-weight: 800;
}

.es-gallery-lightbox button {
	border: 1px solid rgba(255, 255, 255, 0.26);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.1);
	color: var(--es-white);
	cursor: pointer;
	backdrop-filter: blur(10px);
}

.es-gallery-lightbox__close {
	position: absolute;
	top: 20px;
	right: 20px;
	padding: 10px 16px;
}

.es-gallery-lightbox__nav {
	width: 58px;
	height: 58px;
	font-size: 0;
}

.es-gallery-lightbox__nav::before {
	content: "";
	display: block;
	width: 14px;
	height: 14px;
	margin: auto;
	border-top: 2px solid currentColor;
	border-left: 2px solid currentColor;
}

.es-gallery-lightbox__nav--prev::before { transform: rotate(-45deg); }
.es-gallery-lightbox__nav--next::before { transform: rotate(135deg); }

.es-apartment-hero .es-container {
	display: grid;
	place-items: center;
	gap: 18px;
	max-width: 900px;
	text-align: center;
}

.es-apartment-hero h1 {
	font-size: clamp(2.05rem, 4.6vw, 4rem);
	font-weight: 650;
	line-height: 1.08;
	max-width: 840px;
}

.es-apartment-hero p {
	max-width: 720px;
	margin-inline: auto;
	font-size: 0.98rem;
}

.es-apartment-hero strong {
	display: inline-flex;
	align-items: center;
	min-height: 40px;
	padding: 0 18px;
	border: 1px solid rgba(182, 154, 87, 0.34);
	border-radius: 999px;
	background: rgba(247, 252, 245, 0.82);
	font-size: 1.02rem;
	font-weight: 700;
	color: var(--es-leaf);
	white-space: nowrap;
}

.es-archive-layout,
.es-detail-layout {
	display: grid;
	grid-template-columns: 320px 1fr;
	gap: 34px;
	padding-block: 56px 100px;
	align-items: start;
}

.es-archive-search,
.es-booking-sidebar {
	position: sticky;
	top: 116px;
	background: var(--es-white);
	border: 1px solid var(--es-line);
	border-radius: var(--es-radius);
	padding: 22px;
	box-shadow: 0 14px 40px rgba(23, 25, 22, 0.07);
}

.es-archive-search .es-booking-form,
.es-booking-sidebar .es-booking-form {
	display: grid;
	grid-template-columns: 1fr;
	box-shadow: none;
	border-radius: var(--es-radius);
	border: 1px solid var(--es-line);
	overflow: hidden;
}

.es-archive-search .es-booking-form label,
.es-booking-sidebar .es-booking-form label {
	border-right: 0;
	border-bottom: 1px solid var(--es-line);
}

.es-archive-search .es-booking-form button,
.es-booking-sidebar .es-booking-form button { min-height: 54px; }

.es-room-highlights {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
	padding-bottom: 24px;
}

.es-room-highlights article {
	position: relative;
	overflow: hidden;
	padding: 22px;
	border: 1px solid rgba(182, 154, 87, 0.24);
	border-radius: var(--es-radius);
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(247, 252, 245, 0.86));
	box-shadow: 0 18px 42px rgba(23, 25, 22, 0.07);
}

.es-room-highlights article::after {
	content: "";
	position: absolute;
	right: -28px;
	bottom: -34px;
	width: 92px;
	height: 92px;
	border-radius: 999px;
	background: rgba(18, 107, 58, 0.08);
}

.es-room-highlights span {
	display: block;
	margin-bottom: 8px;
	color: var(--es-muted);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.es-room-highlights strong {
	display: block;
	color: var(--es-ink);
	font-size: 1.06rem;
	font-weight: 700;
	line-height: 1.2;
}

.es-detail-gallery {
	display: grid;
	grid-template-columns: 1.4fr 0.6fr;
	gap: 18px;
	padding-block: 38px;
}

.es-detail-gallery > div:first-child {
	min-height: 560px;
	border-radius: var(--es-radius);
	overflow: hidden;
}

.es-detail-gallery img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.es-gallery-mini { grid-template-columns: repeat(2, 1fr); }
.es-gallery-mini div { min-height: 265px; }
.es-feature-grid--compact { margin: 18px 0 32px; }
.es-map-placeholder,
.es-map-embed {
	display: grid;
	place-items: center;
	min-height: 280px;
	margin-top: 16px;
	border-radius: var(--es-radius);
	background: linear-gradient(135deg, rgba(18, 107, 58, 0.12), rgba(182, 154, 87, 0.18)), var(--es-stone);
	color: var(--es-muted);
	font-weight: 800;
	overflow: hidden;
}

.es-map-embed iframe {
	width: 100%;
	min-height: 360px;
	border: 0;
}

.es-content {
	max-width: 850px;
}

.es-room-section {
	margin-bottom: 38px;
}

.es-room-section > h2,
.es-room-story h2,
.es-room-cta h2 {
	font-size: clamp(1.35rem, 2.2vw, 2rem);
	font-weight: 650;
	line-height: 1.18;
}

.es-room-story {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
	gap: 28px;
	align-items: center;
	margin: 8px 0 42px;
	padding: clamp(24px, 4vw, 42px);
	border: 1px solid rgba(18, 107, 58, 0.14);
	border-radius: var(--es-radius);
	background:
		linear-gradient(135deg, rgba(247, 252, 245, 0.96), rgba(255, 255, 255, 0.9)),
		radial-gradient(circle at 92% 18%, rgba(182, 154, 87, 0.18), transparent 34%);
	box-shadow: 0 22px 54px rgba(23, 25, 22, 0.08);
}

.es-room-story ul {
	display: grid;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.es-room-story li {
	position: relative;
	padding: 16px 16px 16px 44px;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.82);
	border: 1px solid rgba(182, 154, 87, 0.18);
	color: var(--es-ink);
	font-weight: 700;
	box-shadow: 0 10px 26px rgba(23, 25, 22, 0.05);
}

.es-room-story li::before {
	content: "";
	position: absolute;
	left: 18px;
	top: 22px;
	width: 10px;
	height: 10px;
	border-radius: 999px;
	background: var(--es-leaf);
	box-shadow: 0 0 0 6px rgba(18, 107, 58, 0.12);
}

.es-room-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin: 10px 0 44px;
	padding: clamp(24px, 4vw, 40px);
	border-radius: var(--es-radius);
	background: linear-gradient(135deg, var(--es-leaf-dark), var(--es-leaf));
	color: var(--es-white);
	box-shadow: 0 24px 58px rgba(18, 107, 58, 0.24);
}

.es-room-cta .es-kicker,
.es-room-cta p {
	color: rgba(255, 255, 255, 0.78);
}

.es-room-cta .es-button {
	min-height: 44px;
	padding-inline: 22px;
	font-size: 0.84rem;
	white-space: nowrap;
	background: var(--es-white);
	color: var(--es-leaf-dark);
	box-shadow: none;
}

.es-content--about {
	max-width: 980px;
	text-align: center;
}

.es-content--about p {
	max-width: 820px;
	margin-inline: auto;
	color: var(--es-muted);
	line-height: 1.78;
}

.es-content--about h2 {
	max-width: 820px;
	margin-inline: auto;
}

.es-content--about .wp-block-columns {
	align-items: center;
	gap: clamp(28px, 5vw, 72px);
	margin-block: clamp(56px, 8vw, 96px);
	text-align: left;
}

.es-content--about .wp-block-column p {
	margin-inline: 0;
}

.es-content--about .wp-block-image img,
.es-content--about video {
	width: 100%;
	height: clamp(380px, 42vw, 560px);
	object-fit: cover;
	border-radius: var(--es-radius);
	box-shadow: var(--es-shadow);
}

.es-content h2 { margin: 34px 0 12px; font-size: clamp(1.8rem, 3vw, 2.7rem); }

.es-contact-form {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px 12px;
	margin: 26px 0 34px;
	padding: 18px;
	border: 1px solid var(--es-line);
	border-radius: var(--es-radius);
	background: var(--es-white);
	box-shadow: 0 14px 40px rgba(23, 25, 22, 0.07);
}

.es-contact-form__heading {
	display: grid;
	grid-column: 1 / -1;
	gap: 6px;
}

.es-contact-form__heading h2 {
	margin: 0;
	font-size: clamp(1.35rem, 2.2vw, 1.95rem);
}

.es-contact-form__heading p:last-child {
	margin: 0;
	color: var(--es-muted);
}

.es-contact-form label {
	display: grid;
	gap: 6px;
	color: var(--es-muted);
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.es-contact-form__heading,
.es-contact-note,
.es-contact-form label:first-of-type,
.es-contact-form label:nth-of-type(7),
.es-contact-form label:last-of-type,
.es-contact-form button {
	grid-column: 1 / -1;
}

.es-contact-note {
	padding: 10px 12px;
	border: 1px solid rgba(18, 107, 58, 0.12);
	border-radius: var(--es-radius);
	background: rgba(247, 252, 245, 0.8);
	color: var(--es-leaf-dark);
	font-size: 0.84rem;
	font-weight: 700;
	line-height: 1.55;
}

.es-contact-form input,
.es-contact-form textarea,
.es-contact-form select {
	width: 100%;
	border: 1px solid var(--es-line);
	border-radius: var(--es-radius);
	padding: 9px 11px;
	background: var(--es-paper);
	color: var(--es-ink);
	font-size: 0.9rem;
	text-transform: none;
	letter-spacing: 0;
}

.es-password-control {
	position: relative;
	display: block;
}

.es-password-control input {
	width: 100%;
	padding-right: 48px;
}

.es-password-toggle {
	position: absolute;
	top: 50%;
	right: 8px;
	display: inline-grid;
	width: 34px;
	height: 34px;
	place-items: center;
	border: 0;
	border-radius: 999px;
	background: transparent;
	color: var(--es-leaf-dark);
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
	transform: translateY(-50%);
}

.es-password-toggle:hover,
.es-password-toggle:focus-visible {
	background: rgba(32, 114, 70, 0.1);
	color: var(--es-green-dark);
	outline: none;
	transform: translateY(-50%) scale(1.04);
}

.es-password-toggle svg {
	width: 19px;
	height: 19px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.9;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.es-password-toggle__pupil {
	fill: currentColor;
	stroke: none;
}

.es-password-toggle__slash {
	opacity: 0;
	transform-origin: center;
	transition: opacity 0.2s ease;
}

.es-password-toggle.is-visible .es-password-toggle__slash {
	opacity: 1;
}

.es-contact-form textarea {
	min-height: 88px;
	resize: vertical;
}

.es-contact-success {
	margin: 0 0 16px;
	padding: 14px 16px;
	border: 1px solid rgba(18, 107, 58, 0.18);
	border-radius: var(--es-radius);
	background: rgba(247, 252, 245, 0.9);
	color: var(--es-leaf-dark);
	font-weight: 800;
	line-height: 1.55;
}

.es-dashboard {
	display: grid;
	gap: 18px;
}

.es-dashboard-login,
.es-dashboard-card {
	padding: 22px;
	border: 1px solid var(--es-line);
	border-radius: var(--es-radius);
	background: var(--es-white);
	box-shadow: 0 14px 40px rgba(23, 25, 22, 0.07);
}

.es-dashboard-card {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	gap: 18px;
	align-items: start;
}

.es-dashboard-actions {
	display: grid;
	gap: 12px;
}

.es-dashboard-card h3 {
	margin: 0 0 8px;
	font-size: clamp(1.25rem, 2vw, 1.7rem);
}

.es-dashboard-dates {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr)) auto;
	gap: 10px;
	align-items: end;
}

.es-dashboard-dates label {
	display: grid;
	gap: 6px;
	color: var(--es-muted);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.es-dashboard-dates input {
	min-height: 46px;
	border: 1px solid var(--es-line);
	border-radius: var(--es-radius);
	padding: 0 12px;
	background: var(--es-paper);
	color: var(--es-ink);
}

.es-dashboard-cancel {
	display: flex;
	justify-content: flex-end;
}

.es-contact-success--error {
	border-color: rgba(127, 29, 29, 0.2);
	background: #fff7f7;
	color: #7f1d1d;
}

.es-service-panel {
	display: grid;
	gap: 18px;
	margin-top: 18px;
	padding: 24px;
	border-radius: var(--es-radius);
	background:
		linear-gradient(135deg, rgba(247, 252, 245, 0.96), rgba(255, 255, 255, 0.9)),
		var(--es-paper);
	border: 1px solid rgba(18, 107, 58, 0.14);
}

.es-service-panel h2 {
	margin: 0 0 8px;
	font-size: clamp(1.45rem, 2.6vw, 2.25rem);
}

.es-service-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
}

.es-service-grid article {
	display: grid;
	gap: 8px;
	padding: 16px;
	border-radius: var(--es-radius);
	background: var(--es-white);
	border: 1px solid var(--es-line);
	box-shadow: 0 12px 30px rgba(23, 25, 22, 0.05);
	position: relative;
	overflow: hidden;
	transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.es-service-grid article:hover {
	transform: translateY(-4px);
	background: var(--es-leaf);
	color: var(--es-white);
	border-color: var(--es-leaf);
}

.es-service-grid strong {
	color: var(--es-leaf-dark);
	font-size: 1rem;
}

.es-service-grid article:hover strong,
.es-service-grid article:hover em {
	color: var(--es-white);
}

.es-service-grid span {
	color: var(--es-muted);
	line-height: 1.55;
}

.es-service-grid article:hover span {
	color: rgba(255, 255, 255, 0.78);
}

.es-service-grid em {
	color: var(--es-gold);
	font-style: normal;
	font-weight: 900;
}

.es-service-icon {
	width: 38px;
	height: 38px;
	display: grid;
	place-items: center;
	border-radius: 999px;
	background: rgba(18, 107, 58, 0.1);
	color: var(--es-leaf-dark);
	font-size: 0.84rem;
	font-weight: 900;
}

.es-service-grid article:hover .es-service-icon {
	background: rgba(255, 255, 255, 0.18);
	color: var(--es-white);
}

.es-service-grid button {
	min-height: 38px;
	border: 0;
	border-radius: 999px;
	padding: 0 14px;
	background: var(--es-paper);
	color: var(--es-leaf-dark);
	font-weight: 900;
	cursor: pointer;
}

.es-service-grid article:hover button {
	background: var(--es-white);
	color: var(--es-leaf-dark);
}

.es-booking-calendar {
	grid-column: 1 / -1;
	padding: 14px;
	border: 1px solid rgba(18, 107, 58, 0.12);
	border-radius: var(--es-radius);
	background: rgba(255, 255, 255, 0.78);
}

.es-calendar-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 10px;
}

.es-calendar-head strong {
	color: var(--es-ink);
	font-size: 0.92rem;
}

.es-calendar-head span {
	color: var(--es-muted);
	font-size: 0.76rem;
	font-weight: 800;
}

.es-calendar-weekdays,
.es-calendar-grid {
	display: grid;
	grid-template-columns: repeat(7, minmax(0, 1fr));
	gap: 5px;
}

.es-calendar-weekdays span {
	color: var(--es-muted);
	font-size: 0.62rem;
	font-weight: 900;
	text-align: center;
	text-transform: uppercase;
}

.es-calendar-grid span {
	min-height: 32px;
	display: grid;
	place-items: center;
	border-radius: 6px;
	background: rgba(247, 252, 245, 0.94);
	color: var(--es-ink);
	font-size: 0.82rem;
	font-weight: 800;
}

.es-calendar-grid .is-booked {
	background: #d8ddd4;
	color: #8a9285;
	text-decoration: line-through;
}

.es-calendar-grid .is-selected {
	background: var(--es-leaf);
	color: var(--es-white);
	text-decoration: none;
}

.es-calendar-grid .is-past { opacity: 0.45; }
.es-calendar-grid .is-empty { background: transparent; }

.es-date-picker-popover {
	position: absolute;
	z-index: 9999;
	padding: 14px;
	border: 1px solid rgba(18, 107, 58, 0.16);
	border-radius: var(--es-radius);
	background: rgba(255, 255, 255, 0.98);
	box-shadow: 0 22px 60px rgba(15, 24, 16, 0.18);
}

.es-date-picker-head {
	display: grid;
	grid-template-columns: 34px minmax(0, 1fr) 34px;
	align-items: center;
	gap: 12px;
	margin-bottom: 10px;
	text-align: center;
}

.es-date-picker-head button {
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border: 1px solid rgba(18, 107, 58, 0.16);
	border-radius: 999px;
	background: rgba(247, 252, 245, 0.96);
	color: var(--es-leaf-dark);
	font-size: 1.3rem;
	line-height: 1;
	font-weight: 900;
	cursor: pointer;
	transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.es-date-picker-head button:hover:not(:disabled) {
	transform: translateY(-2px);
	background: var(--es-leaf);
	color: var(--es-white);
	box-shadow: 0 12px 24px rgba(18, 107, 58, 0.2);
}

.es-date-picker-head button:disabled {
	opacity: 0.35;
	cursor: not-allowed;
}

.es-date-picker-head strong {
	display: block;
	color: var(--es-ink);
	font-size: 0.92rem;
}

.es-date-picker-head span {
	display: block;
	color: var(--es-muted);
	font-size: 0.74rem;
	font-weight: 800;
}

.es-date-picker-weekdays,
.es-date-picker-grid {
	display: grid;
	grid-template-columns: repeat(7, minmax(0, 1fr));
	gap: 5px;
}

.es-date-picker-weekdays span {
	color: var(--es-muted);
	font-size: 0.62rem;
	font-weight: 900;
	text-align: center;
	text-transform: uppercase;
}

.es-date-picker-grid button {
	min-height: 34px;
	border: 0;
	border-radius: 6px;
	background: rgba(247, 252, 245, 0.94);
	color: var(--es-ink);
	font-size: 0.82rem;
	font-weight: 900;
	cursor: pointer;
}

.es-date-picker-grid button:hover:not(:disabled) {
	background: var(--es-leaf);
	color: var(--es-white);
}

.es-date-picker-grid .is-booked {
	background: #d8ddd4;
	color: #8a9285;
	cursor: not-allowed;
	text-decoration: line-through;
}

.es-date-picker-grid .is-selected {
	background: var(--es-leaf);
	color: var(--es-white);
}

.es-date-picker-grid .is-past {
	opacity: 0.45;
	cursor: not-allowed;
}

.es-date-picker-grid .is-empty {
	background: transparent;
	pointer-events: none;
}

.es-service-form {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	padding-top: 4px;
}

.es-service-form label {
	display: grid;
	gap: 7px;
	color: var(--es-muted);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.es-service-form label:nth-child(4),
.es-service-form button {
	grid-column: 1 / -1;
}

.es-service-form input,
.es-service-form select,
.es-service-form textarea {
	width: 100%;
	border: 1px solid var(--es-line);
	border-radius: var(--es-radius);
	padding: 11px 13px;
	background: var(--es-white);
	color: var(--es-ink);
}

.es-payment-proof {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(180px, 0.65fr) minmax(180px, 0.65fr) auto;
	gap: 12px;
	align-items: end;
	padding: 20px;
	border: 1px solid rgba(185, 153, 85, 0.28);
	border-radius: var(--es-radius);
	background: var(--es-white);
	box-shadow: 0 14px 40px rgba(23, 25, 22, 0.06);
}

.es-payment-proof h3 {
	margin: 0 0 8px;
	font-size: clamp(1.22rem, 2vw, 1.65rem);
}

.es-payment-proof label {
	display: grid;
	gap: 7px;
	color: var(--es-muted);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.es-payment-proof input {
	width: 100%;
	min-height: 46px;
	border: 1px solid var(--es-line);
	border-radius: var(--es-radius);
	padding: 8px 12px;
	background: var(--es-paper);
	color: var(--es-ink);
}

.es-availability-status,
.es-booking-payment {
	grid-column: 1 / -1;
	padding: 14px 16px;
	background: var(--es-paper);
	border-bottom: 1px solid var(--es-line);
	color: var(--es-muted);
	font-size: 0.92rem;
	font-weight: 700;
}

.es-availability-status[data-state="available"] {
	color: var(--es-leaf-dark);
	background: rgba(18, 107, 58, 0.1);
}

.es-availability-status[data-state="unavailable"],
.es-availability-status[data-state="error"] {
	color: #8b251f;
	background: rgba(139, 37, 31, 0.08);
}

.es-booking-payment {
	display: grid;
	gap: 4px;
	border-top: 1px solid rgba(182, 154, 87, 0.35);
}

.es-booking-payment strong {
	color: var(--es-ink);
}

.es-newsletter__form button,
.es-footer-newsletter button,
.es-booking-form button,
.es-booking-actions-inline a,
.es-contact-form button,
.es-payment-proof button,
.es-service-grid button,
.es-dashboard-dates button,
.es-dashboard-cancel button,
.es-suite-card__footer a,
.es-text-link {
	transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.es-newsletter__form button:hover,
.es-footer-newsletter button:hover,
.es-booking-form button:hover,
.es-booking-actions-inline a:hover,
.es-contact-form button:hover,
.es-payment-proof button:hover,
.es-service-grid button:hover,
.es-dashboard-dates button:hover,
.es-dashboard-cancel button:hover,
.es-suite-card__footer a:hover,
.es-text-link:hover {
	transform: translateY(-3px);
	box-shadow: 0 18px 38px rgba(18, 107, 58, 0.24), 0 0 0 5px rgba(182, 154, 87, 0.14);
}

.es-newsletter__form button:hover,
.es-footer-newsletter button:hover {
	background: var(--es-gold);
	color: var(--es-ink);
	box-shadow: 0 20px 44px rgba(182, 154, 87, 0.28), 0 0 0 6px rgba(247, 252, 245, 0.18);
}

.es-whatsapp-band {
	padding: 48px 0;
	background: var(--es-leaf);
	color: var(--es-white);
}

.es-whatsapp-band .es-kicker { color: rgba(255, 255, 255, 0.78); }
.es-whatsapp-float {
	position: fixed;
	right: 22px;
	bottom: 22px;
	z-index: 70;
	display: grid;
	place-items: center;
	width: 58px;
	height: 58px;
	border-radius: 999px;
	background: var(--es-leaf);
	color: var(--es-white);
	font-size: 0.86rem;
	font-weight: 900;
	box-shadow: 0 16px 42px rgba(18, 107, 58, 0.36);
}

.es-whatsapp-float svg {
	width: 29px;
	height: 29px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.9;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.es-whatsapp-float__prompt {
	position: absolute;
	right: calc(100% + 12px);
	top: 50%;
	width: max-content;
	max-width: 220px;
	padding: 11px 16px;
	border: 2px solid rgba(255, 255, 255, 0.7);
	border-radius: 999px 999px 999px 10px;
	background: #f4ce37;
	color: var(--es-leaf-dark);
	font-size: 0.82rem;
	font-weight: 900;
	line-height: 1.1;
	letter-spacing: 0.01em;
	box-shadow: 0 18px 38px rgba(10, 69, 38, 0.22);
	opacity: 0;
	pointer-events: none;
	transform: translate(14px, -50%) rotate(-3deg) scale(0.9);
	animation: esChatPromptPop 14s ease-in-out infinite;
}

.es-whatsapp-float__prompt::after {
	content: "";
	position: absolute;
	right: -8px;
	top: 50%;
	width: 14px;
	height: 14px;
	background: #f4ce37;
	border-top: 2px solid rgba(255, 255, 255, 0.7);
	border-right: 2px solid rgba(255, 255, 255, 0.7);
	transform: translateY(-50%) rotate(45deg);
}

@keyframes esChatPromptPop {
	0%, 58%, 100% {
		opacity: 0;
		transform: translate(14px, -50%) rotate(-3deg) scale(0.9);
	}
	10%, 40% {
		opacity: 1;
		transform: translate(0, -50%) rotate(-3deg) scale(1);
	}
}

.es-footer {
	position: relative;
	padding: 82px 0 42px;
	background:
		linear-gradient(90deg, rgba(15, 24, 16, 0.82), rgba(15, 24, 16, 0.66)),
		url("../img/section-pattern.jpg") center / cover no-repeat,
		var(--es-ink);
	background-blend-mode: normal, normal, normal;
	color: var(--es-white);
	overflow: hidden;
}

.es-footer::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(15, 24, 16, 0.1);
	pointer-events: none;
}

.es-footer > * {
	position: relative;
	z-index: 1;
}

.es-footer__grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 42px;
}

.es-footer__brand {
	font-size: 2rem;
	margin-bottom: 18px;
}

.es-footer h3 {
	margin-bottom: 18px;
	font-family: Inter, sans-serif;
	font-size: 0.78rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.es-footer p,
.es-footer__links a,
.es-footer__links li { color: rgba(255, 255, 255, 0.64); }

.es-footer__phone {
	display: inline-block;
	margin-top: 14px;
	color: rgba(255, 255, 255, 0.82);
	font-weight: 800;
}

.es-footer__links {
	list-style: none;
	display: grid;
	gap: 10px;
	margin: 0;
	padding: 0;
}

.es-footer-newsletter {
	display: grid;
	gap: 10px;
	width: min(100% - 40px, 540px);
	margin: 40px auto 0;
	text-align: center;
}

.es-footer-newsletter label {
	color: var(--es-gold);
	font-size: 0.74rem;
	font-weight: 900;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.es-footer-newsletter div {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 8px;
}

.es-footer-newsletter input {
	min-width: 0;
	min-height: 44px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: var(--es-radius);
	padding: 0 14px;
	background: rgba(255, 255, 255, 0.08);
	color: var(--es-white);
}

.es-footer-newsletter input::placeholder {
	color: rgba(255, 255, 255, 0.46);
}

.es-footer-newsletter button {
	min-height: 44px;
	border: 0;
	border-radius: var(--es-radius);
	padding: 0 18px;
	background: var(--es-gold);
	color: var(--es-ink);
	font-weight: 900;
	cursor: pointer;
}

.es-footer-newsletter__status {
	margin: 0;
	color: rgba(255, 255, 255, 0.74);
	font-size: 0.86rem;
}

.es-post-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 26px;
	padding-block: 70px;
}

.es-card--post {
	border: 1px solid var(--es-line);
	border-radius: var(--es-radius);
	background: var(--es-white);
	overflow: hidden;
}

.es-card__body { padding: 24px; }

@media (min-width: 1101px) {
	.es-container {
		width: min(100% - 56px, 1180px);
	}
	.es-header__inner {
		min-height: 70px;
	}
	.es-hero {
		min-height: 800px;
	}
	.es-hero__content {
		padding-top: 0;
	}
	.es-hero h1 {
		font-size: clamp(2.65rem, 5.4vw, 5.05rem);
		line-height: 0.98;
	}
	.es-hero p {
		max-width: 620px;
		font-size: clamp(0.96rem, 1.7vw, 1.12rem);
	}
	.es-booking-panel-wrap {
		width: min(100% - 88px, 980px);
	}
	.es-section {
		padding-block: clamp(64px, 7.8vw, 104px);
	}
	.es-section h2 {
		font-size: clamp(2.15rem, 4.45vw, 4.35rem);
	}
	.es-page-hero h1,
	.es-apartment-hero h1 {
		font-size: clamp(1.85rem, 3.35vw, 2.85rem);
	}
	.es-section p,
	.es-content p,
	.es-content li {
		font-size: 1rem;
	}
	.es-split {
		gap: clamp(32px, 6vw, 76px);
	}
	.es-gallery-strip div {
		min-height: 390px;
	}
	.es-apartments-section .es-section-head h2 {
		font-size: clamp(1.95rem, 3.05vw, 3.25rem);
	}
	.es-card-grid {
		grid-auto-columns: minmax(320px, calc((100% - 48px) / 3));
		gap: 24px;
	}
	.es-suite-card__body {
		padding: 22px;
	}
	.es-suite-card h3 {
		font-size: 1.38rem;
	}
	.es-detail-gallery > div:first-child {
		min-height: 510px;
	}
	.es-gallery-mini div {
		min-height: 240px;
	}
	.es-detail-layout {
		gap: 34px;
	}
	.es-benefits-section {
		gap: 34px;
		padding-inline: max(28px, calc((100% - 1180px) / 2));
	}
	.es-benefits-section h2 {
		font-size: clamp(1.7rem, 2.65vw, 2.85rem);
	}
	.es-offer-grid {
		min-height: 228px;
	}
	.es-offer-grid a {
		min-height: 176px;
		padding: 24px;
		font-size: 1.42rem;
	}
	.es-content h2 {
		font-size: clamp(1.65rem, 2.7vw, 2.4rem);
	}
	.es-footer__grid {
		gap: 30px;
	}
}

@media (max-width: 1100px) {
	.es-container { width: min(100% - 28px, 760px); }
	.admin-bar .es-site-header { top: 46px; }
	.es-menu-toggle {
		display: inline-grid;
		gap: 5px;
		width: 44px;
		height: 44px;
		place-content: center;
		border: 1px solid rgba(255, 255, 255, 0.35);
		border-radius: 999px;
		background: transparent;
	}
	.es-menu-toggle span:not(.screen-reader-text) {
		width: 18px;
		height: 2px;
		background: var(--es-white);
	}
	.es-nav {
		position: absolute;
		left: 14px;
		right: 14px;
		top: calc(100% + 10px);
		display: none;
		padding: 22px;
		background: rgba(25, 27, 25, 0.96);
		border-radius: var(--es-radius);
	}
	.es-nav.is-open { display: block; }
	.es-nav__list { display: grid; gap: 18px; }
	.es-nav__account { display: block; }
	.es-header-actions { display: none; }
	.es-hero { min-height: 780px; padding-top: 130px; }
	.es-hero__copy,
	.es-hero__copy--comfort,
	.es-hero__copy--privacy {
		max-width: 100%;
		margin-inline: auto;
		padding-right: 0;
		text-align: center;
	}
	.es-hero__copy--comfort .es-kicker::after,
	.es-hero__copy--comfort h1,
	.es-hero__copy--comfort p,
	.es-hero__copy--privacy .es-kicker::after,
	.es-hero__copy--privacy h1,
	.es-hero__copy--privacy p {
		margin-inline: auto;
	}
	.es-booking-panel-wrap {
		position: relative;
		left: auto;
		bottom: auto;
		transform: none;
		width: min(100% - 44px, 620px);
		margin-top: 38px;
	}
	.es-booking-form,
	.es-contact-form,
	.es-booking-form--direct,
	.es-dashboard-card,
	.es-dashboard-dates,
	.es-service-grid,
	.es-service-form,
	.es-payment-proof,
	.es-card-grid,
	.es-split,
	.es-platform-grid,
	.es-benefits-section,
	.es-archive-layout,
	.es-detail-layout,
	.es-detail-gallery,
	.es-page-visual--split,
	.es-post-grid,
	.es-footer__grid {
		grid-template-columns: 1fr;
	}
	.es-room-highlights {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.es-room-story,
	.es-room-cta {
		grid-template-columns: 1fr;
	}
	.es-room-cta {
		display: grid;
	}
	.es-room-cta .es-button {
		width: fit-content;
	}
	.es-booking-form label { border-right: 0; border-bottom: 1px solid var(--es-line); }
	.es-booking-actions-inline { min-height: 58px; }
	.es-section-head,
	.es-newsletter__inner,
	.es-whatsapp-band__inner,
	.es-apartment-hero .es-container {
		display: grid;
		align-items: start;
	}
	.es-faq-layout {
		grid-template-columns: 1fr;
	}
	.es-faq-layout > div:first-child {
		position: static;
	}
	.es-archive-search,
	.es-booking-sidebar { position: static; }
	.es-card-grid {
		grid-auto-columns: minmax(300px, 78vw);
	}
	.es-media-gallery {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.es-gallery-lightbox {
		grid-template-columns: 1fr;
	}
	.es-gallery-lightbox__stage,
	.es-gallery-lightbox p {
		grid-column: 1;
	}
	.es-gallery-lightbox__nav {
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
	}
	.es-gallery-lightbox__nav--prev { left: 16px; }
	.es-gallery-lightbox__nav--next { right: 16px; }
	.es-benefits-section {
		padding-inline: 20px;
	}
	.es-offer-grid {
		grid-template-columns: 1fr;
		gap: 16px;
		min-height: auto;
	}
	.es-offer-grid a,
	.es-offer-grid a:nth-child(1),
	.es-offer-grid a:nth-child(2),
	.es-offer-grid a:nth-child(3),
	.es-offer-grid a:hover {
		transform: none;
	}
	.es-offer-grid a {
		min-height: 170px;
	}
	.es-card-grid--archive {
		grid-auto-columns: initial;
		grid-template-columns: 1fr;
	}
	.es-detail-tile-grid,
	.es-detail-review-grid {
		grid-template-columns: 1fr;
	}
	.es-gallery-strip { grid-template-columns: 1fr; }
	.es-gallery-strip div:nth-child(2),
	.es-photo-collage div:nth-child(2),
	.es-photo-collage div:nth-child(3) { margin-top: 0; transform: none; }
}

@media (max-width: 560px) {
	.es-header__inner { min-height: 72px; }
	.es-page-hero,
	.es-apartment-hero {
		padding-top: 132px;
	}
	.es-hero { min-height: auto; padding: 112px 0 54px; }
	.es-hero h1 {
		max-width: 100%;
		font-size: clamp(2.35rem, 10.8vw, 3.1rem);
		line-height: 1.08;
		overflow-wrap: anywhere;
	}
	.es-video-toggle {
		right: 16px;
		bottom: 24px;
	}
	.es-hero__actions,
	.es-newsletter__form,
	.es-stats { display: grid; }
	.es-button,
	.es-newsletter__form { width: 100%; }
	.es-photo-collage,
	.es-feature-grid,
	.es-gallery-mini,
	.es-room-highlights,
	.es-media-gallery { grid-template-columns: 1fr; }
	.es-room-story,
	.es-room-cta {
		padding: 22px;
	}
	.es-room-cta .es-button {
		width: 100%;
	}
	.es-footer-newsletter div {
		grid-template-columns: 1fr;
	}
	.es-footer-newsletter button {
		width: 100%;
	}
	.es-media-gallery button { min-height: 330px; }
	.es-card-grid {
		grid-auto-columns: minmax(260px, 86vw);
	}
	.es-detail-gallery > div:first-child { min-height: 360px; }
	.es-whatsapp-float { bottom: 82px; }
	.es-whatsapp-float__prompt {
		right: 0;
		top: auto;
		bottom: calc(100% + 10px);
		transform: translateY(12px) rotate(-3deg) scale(0.9);
		animation-name: esChatPromptPopMobile;
	}
	.es-whatsapp-float__prompt::after {
		right: 22px;
		top: auto;
		bottom: -8px;
		transform: rotate(135deg);
	}
	body { padding-bottom: 0; }
}

@media (prefers-reduced-motion: reduce) {
	.es-reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

.single-es_apartment .es-apartment-hero strong,
.es-apartment-single .es-apartment-hero strong {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	min-height: 40px;
	margin-inline: auto;
	padding: 0 18px;
	line-height: 1;
	text-align: center;
	vertical-align: middle;
}

@keyframes esChatPromptPopMobile {
	0%, 58%, 100% {
		opacity: 0;
		transform: translateY(12px) rotate(-3deg) scale(0.9);
	}
	10%, 40% {
		opacity: 1;
		transform: translateY(0) rotate(-3deg) scale(1);
	}
}
