@font-face {
	font-family: 'Edwardian Script ITC';
	font-weight: 400;
	font-style: normal;
	font-display: swap;
	src: url('../assets/fonts/Edwardian Script ITC Regular.woff2') format('woff2');
}



.hts-book-card {
	display: none;
	position: fixed;
	top: calc(var(--header-height) + 8px);
	right: 24px;
	z-index: 9998;
	width: 340px;
	padding: 36px 28px 20px;
	background: var(--color-accent);
	border-radius: 20px;
	box-shadow: 0 16px 48px rgba(0, 0, 0, 0.22);
	text-align: center;
	transform: translateY(-12px) scale(0.96);
	opacity: 0;
	transition: transform var(--transition-base), opacity var(--transition-base);
	pointer-events: none;
	flex-direction: column;
}

.hts-book-card.is-open {
	display: flex;
	transform: translateY(0) scale(1);
	opacity: 1;
	pointer-events: auto;
	animation: hts-card-in 0.3s ease forwards;
}

@keyframes hts-card-in {
	from {
		transform: translateY(-12px) scale(0.96);
		opacity: 0;
	}

	to {
		transform: translateY(0) scale(1);
		opacity: 1;
	}
}



@keyframes hts-blur-fade-in {
	from {
		opacity: 0;
		transform: translateY(16px);

	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.anim-blur-fade {
	opacity: 0;
	animation: hts-blur-fade-in 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
	backface-visibility: hidden;
}

.anim-blur-fade--d1 {
	animation-delay: 0.1s;
}

.anim-blur-fade--d2 {
	animation-delay: 0.25s;
}

.anim-blur-fade--d3 {
	animation-delay: 0.40s;
}

.anim-blur-fade--d4 {
	animation-delay: 0.55s;
}

.anim-blur-fade--d5 {
	animation-delay: 0.70s;
}

@media (prefers-reduced-motion: reduce) {
	.anim-blur-fade {
		opacity: 1;
		animation: none;
		filter: none;
		transform: none;
	}
}



.hts-book-card__close {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--color-dark);
	color: var(--color-white);
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	line-height: 1;
	transition: background var(--transition-fast);
}

.hts-book-card__close:hover {
	background: var(--color-dark);
}



.hts-book-card__heading {
	font-family: var(--font-heading);
	font-size: 26px;
	font-weight: 700;
	line-height: 1.2;
	color: var(--color-dark);
	margin: 0 0 20px;
}



.hts-book-card__phone {
	display: block;
	font-family: var(--font-body);
	font-size: 22px;
	font-weight: 600;
	color: var(--color-white) !important;
	text-decoration: none;
	margin-bottom: 16px;
	letter-spacing: 0.5px;
	transition: opacity var(--transition-fast);
}

.hts-book-card__phone:hover {
	opacity: 0.75;
}

.hts-book-card__qr-row {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	margin-bottom: 0;
}

.hts-book-card__qr-row .hts-book-card__qr-link {
	margin: 0;
	flex-shrink: 0;
	order: 2;
}

.hts-book-card__qr-row .hts-book-card__bottom {
	order: 1;
}

.hts-book-card__bottom {
	font-family: var(--font-body);
	font-size: 14px;
	color: var(--color-white) !important;
	margin: 0;
	line-height: 1.4;
	opacity: 0.8;
	text-align: center;
}



.hts-book-card__qr-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 220px;
	height: 220px;
	margin: 0 auto;
	background: var(--color-white);
	border-radius: 16px;
	padding: 16px;
	transition: box-shadow var(--transition-fast);
}

.hts-book-card__qr-link:hover {
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.hts-book-card__qr {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.hts-book-card__footer {
	margin-top: 40px;
	padding-top: 20px;
	border-top: 1px solid var(--color-cream-soft);
}

.hts-book-card__form-link {
	display: block;
	font-family: var(--font-body);
	font-size: 14px;
	color: var(--color-dark) !important;
	text-align: center;
	transition: opacity var(--transition-fast);
}

.hts-book-card__form-link:hover {
	opacity: 0.75;
}



#hts-book-toggle {
	cursor: pointer;
}



.hts-header__cta--mobile {
	display: none;
}

@media (max-width: 640px) {
	.hts-book-card {
		display: none !important;
	}

	#hts-book-toggle {
		display: none;
	}

	.hts-header__cta--mobile {
		display: flex;
	}
}

.hts-hero {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 100svh;
	overflow: hidden;
}

.hts-hero__placeholder {
	position: absolute;
	inset: 0;
	z-index: 0;
	background: linear-gradient(135deg, #2a4858 0%, #1a3040 50%, #0f1e28 100%);
}

.hts-hero__video {
	position: absolute;
	inset: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	object-position: center;
	background-color: #1a3040;
}

@media (max-width: 767px) {
	.hts-hero__video {
		aspect-ratio: 9 / 16;
	}
}

.hts-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background-color: rgba(0, 0, 0, 0.3);
	backdrop-filter: blur(1px);
	pointer-events: none;
	transform: translateZ(0);
	backface-visibility: hidden;
}

.hts-hero__content {
	position: relative;
	z-index: 2;
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	text-align: center;
	padding-top: calc(var(--header-height) + 60px);
	padding-bottom: var(--space-2xl);
	padding-inline: var(--space-lg);
	width: 100%;
}

.hts-hero__top {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--space-md);
	max-width: var(--container-md);
	width: 100%;
}

.hts-hero__content h1 {
	color: var(--color-white);
	margin-top: var(--space-sm);
}

.hts-hero__subtitle {
	color: var(--color-white);
	font-size: var(--text-p-md);
	margin-top: 20px;
	margin-bottom: 20px;
	font-weight: 400;
	max-width: 800px;
	text-shadow: 1px 0px 5px rgba(0, 0, 0, 0.75);
}




.hts-hero__explore {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--space-sm);
	margin-top: var(--space-xs);
}

.hts-hero__explore-label {
	color: var(--color-white);
	font-size: var(--text-p-lg);
	font-weight: 500;
	line-height: 35px;
	text-shadow: 1px 0px 5px rgba(0, 0, 0, 0.75);
}

.hts-location-pills {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-xs);
	justify-content: center;
}

.hts-hero__bottom-bar {
	position: relative;
	z-index: 2;
	width: 100%;
}

.hts-features__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--space-md);
	align-items: end;
	position: relative;
}

.hts-feature-card {
	background-color: rgba(255, 255, 255, 0.8);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	padding: var(--space-md) var(--space-md);
	text-align: left;
	transition: box-shadow var(--transition-base), transform var(--transition-base), background-color var(--transition-base);
}

@media (hover: hover) {

	.hts-feature-card:hover,
	.hts-feature-card.is-highlighted {
		background-color: rgba(255, 255, 255, 1);
		box-shadow: var(--shadow-card-hover);
		transform: translateY(-3px);
	}
}

@media (hover: none) {
	.hts-feature-card {
		background-color: var(--color-white);
	}
}

.hts-feature-card__icon {
	margin-bottom: var(--space-md);
	display: block;
}

.hts-feature-card__title {
	font-size: var(--text-p-sm);
	font-weight: 700;
	margin-bottom: 10px;
}

.hts-feature-card__text {
	font-size: var(--text-p-sm);
	font-weight: 500;
	line-height: 25px;
}

.hts-feature-card__text strong {
	font-weight: 700;
}

.hts-properties {
	padding-block: var(--space-3xl);
	margin-bottom: 60px;
	min-height: 100svh;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.hts-properties .hts-container {
	max-width: 1413px;
}

.hts-properties__header {
	text-align: center;
	margin-bottom: var(--space-md);
}

.hts-properties__header h2 {
	color: var(--color-accent);
	margin-bottom: var(--space-md);
}

.hts-properties__header p {
	text-align: left;
	margin-top: 30px;
	font-size: var(--text-h3);
	font-weight: 500;
	color: var(--color-text);
}

.hts-amenities__heading {
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--color-gray-warm);
	margin-bottom: var(--space-sm);
}

.hts-amenities {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: var(--space-xl);
	background-color: var(--color-gray-light);
	overflow: hidden;
}

.hts-amenity {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0;
	height: 88px;
	padding: 18px 15px 0;
	background-color: var(--color-cream-soft);
	border-radius: 0;
	flex: 1;
	min-width: 110px;
}

.hts-amenity:hover {
	box-shadow: inset 0 0 0 1px var(--color-white);
}

.hts-amenity svg {
	width: 28px;
	height: 28px;
}

.hts-amenity__label {
	margin-top: auto;
	padding-bottom: 15px;
	font-size: var(--text-p-sm);
	font-weight: 700;
	color: var(--color-dark-warm);
	text-align: center;
}

.hts-properties__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-md);
	align-items: stretch;
}

.hts-property-card {
	background-color: var(--color-gray-bg);
	border-radius: var(--radius-sharp);
	overflow: hidden;
	transition: filter var(--transition-base);
	display: flex;
	flex-direction: column;
	height: 100%;
}

.hts-property-card:hover {
	filter: brightness(0.97);
}

.hts-card__img-wrap {
	position: relative;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background-color: var(--color-border);
}

.hts-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease-out, opacity 0.4s ease;
}

.hts-card__img--secondary {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}

.hts-card__img--primary {
	position: relative;
	z-index: 1;
}

.hts-property-card:hover .hts-card__img {
	transform: scale(1.04);
}

.hts-property-card:hover .hts-card__img--secondary {
	opacity: 1;
}

.hts-card__img-placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #c8d8e0 0%, #a8bec8 100%);
}

.hts-card__price-badge {
	position: absolute;
	top: 14px;
	right: 14px;
	background-color: var(--color-white);
	color: var(--color-dark);
	font-size: 13px;
	font-weight: 700;
	padding: 6px 14px;
	border-radius: var(--radius-pill);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.hts-card__body {
	padding: var(--space-lg);
	display: flex;
	flex-direction: column;
	flex: 1;
}

.hts-card__name {
	font-size: var(--text-h3);
	font-weight: 700;
	margin-bottom: var(--space-sm);
	line-height: 1.2;
}

.hts-card__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-sm);
	margin-bottom: var(--space-sm);
	flex-wrap: wrap;
}

.hts-card__tag {
	font-size: var(--text-p-sm);
	font-weight: 600;
	color: var(--color-accent);
}

.hts-card__desc {
	margin-top: 15px;
	line-height: 1.55;
	margin-bottom: var(--space-xs);
	flex: 1;
}

.hts-card__vv {
	font-size: var(--text-p-sm);
	font-style: italic;
	color: var(--color-gray-500);
	margin-bottom: var(--space-sm);
}

.hts-card__footer {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding-top: var(--space-sm);
	border-top: 1px solid var(--color-border);
	margin-bottom: var(--space-sm);
}

.hts-card__pricing {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.hts-card__price-range {
	font-size: var(--text-p-base);
	font-weight: 600;
}

.hts-card__capacity {
	font-size: var(--text-p-base);
	font-weight: 600;
	white-space: nowrap;
}

.hts-card__price-note {
	font-size: 11px;
	color: var(--color-gray-500);
	line-height: 1.3;
}

.hts-card__cta {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: var(--space-sm);
	background-color: var(--color-accent);
	color: var(--color-white);
	font-size: var(--text-btn);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	height: 43px;
	border-radius: var(--radius-sharp);
	transition: background-color var(--transition-fast);
	margin-top: auto;
	margin-left: calc(-1 * var(--space-lg));
	margin-right: calc(-1 * var(--space-lg));
	margin-bottom: calc(-1 * var(--space-lg));
}

.hts-card__cta:hover {
	opacity: 0.9;
}

.hts-testimonial {
	min-height: 80svh;
	position: relative;
}

.hts-testimonial__wa {
	position: absolute;
	bottom: var(--space-lg);
	right: var(--space-lg);
}

.hts-testimonial__inner {
	position: relative;
	min-height: 80svh;
	display: flex;
	align-items: center;
	padding-block: var(--space-3xl);
}

.hts-testimonial__photo {
	position: absolute;
	top: 0;
	left: 0;
	width: 65%;
	height: 100%;
	overflow: hidden;
	background-color: var(--color-border);
}

.hts-testimonial__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hts-testimonial__photo-placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #d4b896 0%, #b89070 100%);
}

.hts-testimonial__content {
	position: relative;
	z-index: 1;
	margin-left: calc(50% - 1px);
	max-width: min(620px, calc(50vw - var(--space-xl) - 1px));
	background-color: var(--color-cream);
	border: 1px solid #c2b29a;
	padding: var(--space-3xl) var(--space-xl);
}

.hts-testimonial__quote {
	font-size: 22px;
	font-weight: 700;
	line-height: 1.35;
	margin-bottom: var(--space-lg);
}

.hts-testimonial__body {
	font-size: var(--text-p-sm);
	color: var(--color-gray-500);
	line-height: 1.7;
	margin-bottom: var(--space-xl);
	max-width: 65ch;
}

.hts-testimonial__author {
	display: flex;
	align-items: center;
	gap: var(--space-md);
}

.hts-testimonial__avatar {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	object-fit: cover;
	overflow: hidden;
	background-color: var(--color-border);
	flex-shrink: 0;
}

.hts-testimonial__avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hts-testimonial__avatar-placeholder {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: linear-gradient(135deg, #ccc 0%, #aaa 100%);
	flex-shrink: 0;
}

.hts-testimonial__name {
	font-size: var(--text-p-base);
	font-weight: 700;
}

.hts-testimonial__type {
	font-size: var(--text-p-sm);
	color: var(--color-gray-500);
	margin-top: 2px;
}

.hts-south-coast {
	padding-block: var(--space-3xl);
	min-height: 100svh;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.hts-south-coast__header {
	text-align: center;
	margin-bottom: var(--space-xl);
}

.hts-south-coast__header h2 {
	color: var(--color-accent);
	margin-bottom: var(--space-sm);
}

.hts-south-coast__subtitle {
	font-size: var(--text-p-base);
	max-width: 700px;
	margin-inline: auto;
	line-height: 1.65;
}

.hts-south-coast__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-md);
}

.hts-location-card {
	display: flex;
	flex-direction: column;
	gap: var(--space-lg);
}

.hts-location-card__img-wrap {
	position: relative;
	height: 540px;
	border-radius: var(--radius-sharp);
	overflow: hidden;
	background-color: var(--color-border);
}

.hts-location-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease, opacity 0.4s ease;
}

.hts-location-card__video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: 1;
}

.hts-location-card:hover .hts-location-card__img {
	transform: scale(1.04);
}

.hts-location-card:hover .hts-location-card__video {
	opacity: 1;
}

.hts-location-card__img-placeholder {
	width: 100%;
	height: 100%;
}

.hts-location-card__img-placeholder--1 {
	background: linear-gradient(135deg, #5a9ec8 0%, #3a7ea8 100%);
}

.hts-location-card__img-placeholder--2 {
	background: linear-gradient(135deg, #4a9ec0 0%, #2a7ea0 100%);
}

.hts-location-card__img-placeholder--3 {
	background: linear-gradient(135deg, #c8a060 0%, #a88040 100%);
}

.hts-location-card__info {
	text-align: center;
}

.hts-location-card__title {
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 4px;
}

.hts-location-card__desc {
	font-size: var(--text-p-sm);
	color: var(--color-gray-500);
}





@media (max-width: 1024px) {

	.hts-features__grid {
		display: flex;
		align-items: stretch;
		overflow-x: auto;
		gap: var(--space-md);
		scroll-snap-type: x mandatory;
		scroll-behavior: smooth;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		cursor: grab;
		padding-bottom: 4px;
		/* Full bleed-out: extend to viewport edges, keep left distance on initial state */
		width: calc(100% + 2 * var(--space-md));
		margin-left: calc(-1 * var(--space-md));
		margin-right: calc(-1 * var(--space-md));
		padding-left: var(--space-md);
		padding-right: 0;
		scroll-padding-left: var(--space-md);
		/* Lock vertical pan during horizontal swipe */
		touch-action: pan-x;
		overscroll-behavior-x: contain;
		overscroll-behavior-y: none;
	}

	.hts-features__grid::-webkit-scrollbar {
		display: none;
	}

	.hts-feature-card {
		flex: 0 0 300px;
		align-self: stretch;
		scroll-snap-align: start;
		touch-action: pan-x;
	}

	.hts-hero {
		overflow: visible;
	}

	.hts-hero__bottom-bar {
		overflow: visible;
	}

	.hts-container.hts-container-bottom-bar {
		padding-inline: 0;
		overflow: visible;
	}

	.hts-testimonial__inner {
		flex-direction: column;
		align-items: stretch;
		padding-block: 0;
	}

	.hts-testimonial__photo {
		position: relative;
		width: 100%;
		height: auto;
		aspect-ratio: 16 / 9;
	}

	.hts-testimonial__content {
		margin-left: 0;
		max-width: none;
		border: none;
		padding: var(--space-xl) var(--space-lg);
	}

	.hts-properties__grid {
		grid-template-columns: 1fr;
		gap: var(--space-xl);
	}

	.hts-south-coast__grid {
		grid-template-columns: 1fr;
		max-width: 480px;
		margin-inline: auto;
	}

	.hts-amenity {
		min-width: 80px;
		padding: 10px;
	}
}

@media (max-width: 640px) {
	.hts-amenities {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
	}

	.hts-amenity {
		flex: none;
		min-width: 0;
		width: 100%;
		height: auto;
		min-height: 80px;
	}



	.hts-amenities-showcase .hts-header__cta {
		width: auto;
		height: auto;
		padding: 10px 22px;
		border-radius: var(--radius-pill);
	}

	.hts-amenities-showcase .hts-header__cta-label {
		display: inline;
	}

	.hts-detail__cta-contact .hts-header__cta {
		width: 100%;
		height: auto;
		padding: 10px 22px;
		border-radius: var(--radius-pill);
	}

	.hts-detail__cta-contact .hts-header__cta-label {
		display: inline;
	}

	.hts-hero__content {
		padding-top: calc(var(--header-height) + var(--space-2xl));
		padding-inline: var(--space-md);
		justify-content: space-between;
		text-align: left;
	}

	.hts-hero__content h1 {
		font-size: 32px;
		line-height: 1.3;
	}

	/* Scale all H2s coherently with H1 (32px) on tablet/mobile */
	h2 {
		font-size: 28px;
		line-height: 1.25;
	}

	.hts-hero__top {
		align-items: flex-start;
	}


	.hts-hero__subtitle {
		max-width: 100%;
	}

	.hts-location-pills {
		justify-content: flex-start;
	}

	.hts-hero__explore {
		align-items: flex-start;
	}

	.hts-amenity {
		min-width: 80px;
	}

	.hts-testimonial__content {
		padding: var(--space-lg) 20px;
	}

	.hts-testimonial__quote {
		font-size: 18px;
	}

	.hts-amenity__label {
		font-size: 11px;
		padding-bottom: 10px;
	}

	.hts-properties__grid {
		grid-template-columns: 1fr;
		gap: 40px;
		max-width: 100%;
	}

	.hts-testimonial {
		min-height: auto;
	}

	.hts-testimonial__inner {
		min-height: auto;
	}

	.hts-south-coast {
		min-height: auto;
	}

	.hts-south-coast__header {
		text-align: left;
	}

	.hts-south-coast__subtitle {
		margin-inline: 0;
		text-align: left;
	}

	.hts-south-coast__grid {
		gap: 40px;
	}

	.hts-location-card__info {
		text-align: left;
	}
}

.hts-features__intro {
	font-weight: 600;
	color: var(--color-white);
	text-align: left;
	margin-bottom: var(--space-sm);
}

.hts-amenities-showcase__inner {
	align-content: center;
	display: grid;
	min-height: 700px;
	grid-template-columns: 3fr 7fr;
	gap: var(--space-3xl);
	align-items: start;
	min-width: 0;
}

.hts-amenities-showcase__label {
	display: block;
	font-family: var(--font-accent);
	font-size: var(--text-script);
	color: var(--color-gold);
	line-height: 1.1;
}

.hts-amenities-showcase__title {
	color: var(--color-accent);
	margin-bottom: var(--space-md);
	overflow-wrap: break-word;
	word-break: break-word;
}

.hts-amenities-showcase__text {
	font-size: var(--text-p-base);
	line-height: 1.65;
	margin-bottom: var(--space-xl);
	max-width: 65ch;
}

.hts-amenities-showcase__text p+p {
	margin-top: 1em;
}

.hts-img-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-sm);
}




.hts-img-grid__cell {
	position: relative;
	overflow: hidden;
	border-radius: var(--radius-md);
	aspect-ratio: 16 / 10;
}

.hts-img-grid__cell img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}

.hts-img-grid__cell:hover img {
	transform: scale(1.05);
}

.hts-img-grid__caption {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 0px 15px 10px 15px;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.hts-img-grid__caption-title {
	font-size: 15px;
	font-weight: 700;
	color: var(--color-white);
	line-height: 1.3;
}

.hts-img-grid__caption-sub {
	font-size: var(--text-p-sm);
	color: rgba(255, 255, 255, 0.8);
}

.hts-img-grid__placeholder {
	width: 100%;
	aspect-ratio: 1;
	border-radius: var(--radius-md);
	background: linear-gradient(135deg, #e8dcc8 0%, #d4c5a0 100%);
}


.hts-contact {
	margin-top: 0px !important;
	margin-bottom: 150px !important;
	overflow-x: hidden;
}

.hts-gallery__header {
	text-align: center;
	margin-bottom: var(--space-xl);
}

.hts-gallery__header h2 {
	color: var(--color-accent);
	margin-bottom: var(--space-sm);
}

.hts-gallery__subtitle {
	font-size: var(--text-p-sm);
	color: var(--color-gray-500);
	max-width: 700px;
	margin-inline: auto;
	line-height: 1.65;
}

.hts-gallery__tabs {
	display: flex;
	gap: var(--space-sm);
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: var(--space-xl);
}

.hts-gallery__tab {
	padding: 10px 24px;
	border: 2px solid var(--color-accent);
	border-radius: var(--radius-pill);
	background: none;
	font-size: var(--text-p-sm);
	font-weight: 600;
	color: var(--color-accent);
	pointer-events: none;
	user-select: text;
}

.hts-gallery__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-sm);
	margin-top: var(--space-lg);
}

.hts-gallery__col {
	display: flex;
	flex-direction: column;
	gap: var(--space-sm);
}

.hts-gallery__cell {
	aspect-ratio: 4 / 3;
	overflow: hidden;
	border-radius: var(--radius-md);
	background-color: var(--color-border);
}

.hts-gallery__cell img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}

.hts-gallery__cell:hover img {
	transform: scale(1.04);
}

.hts-gallery__cell-placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, var(--color-cream) 0%, #d4c5a0 100%);
}

@media (max-width: 1024px) {
	.hts-amenities-showcase__inner {
		grid-template-columns: 1fr;
		min-height: auto;
	}

	.hts-gallery__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.hts-img-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.hts-img-grid__cell {
		aspect-ratio: 16 / 10;
	}

	.hts-amenities-showcase {
		overflow-x: hidden;
	}

	.hts-amenities-showcase .hts-container {
		overflow-x: hidden;
		max-width: 100%;
		padding-inline: var(--space-md);
	}

	.hts-amenities-showcase__inner {
		min-height: auto;
		width: 100%;
	}

	.hts-amenities-showcase__text {
		max-width: 100%;
	}
}

@media (max-width: 640px) {
	.hts-gallery__grid {
		grid-template-columns: 1fr;
	}

	.hts-gallery__tabs {
		gap: var(--space-xs);
	}

	.hts-img-grid {
		grid-template-columns: 1fr;
	}

	.hts-img-grid__cell {
		aspect-ratio: 4 / 3;
	}
}

.hts-hero__top .hts-rating,
.hts-hero__top .hts-rating__score {
	color: var(--color-white);
}



.hts-gallery {
	width: 100%;
	position: relative;
	overflow: hidden;
	line-height: 0;
	margin-top: 2px;
	margin-bottom: 0px;
	padding-block: 0;
	background-color: transparent;
}

.hts-gallery.hts-section {
	margin-top: 60px;
	padding-top: 40px;
	line-height: normal;
}

