/* Hospitable Listings - Frontend Styles
   Scandinavian Luxury Aesthetic */

/* =========================================================================
   CSS Custom Properties
   ========================================================================= */

.hl-listing {
	--hl-font: 'Quicksand', sans-serif;
	--hl-font-heading: 'Quicksand', sans-serif;
	--hl-primary: #2c2c2c;
	--hl-accent: #b8956a;
	--hl-cta: #2c2c2c;
	--hl-text: #3a3a3a;
	--hl-text-light: #8a8a8a;
	--hl-bg: #ffffff;
	--hl-bg-alt: #faf8f5;
	--hl-border: #e8e4df;
	--hl-gold: #b8956a;
	--hl-hero-text: #ffffff;
	--hl-radius: 2px;
	--hl-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
	--hl-bg-dark: #2f2b26;
	--hl-shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.08);
	--hl-transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);

	font-family: var(--hl-font);
	color: var(--hl-text);
	line-height: 1.75;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* =========================================================================
   Container
   ========================================================================= */

.hl-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

/* =========================================================================
   Section Base
   ========================================================================= */

.hl-section {
	padding: 96px 0;
}

.hl-section__heading {
	font-family: var(--hl-font-heading);
	font-size: 28px;
	font-weight: 300;
	color: var(--hl-primary);
	margin: 0 0 48px;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	position: relative;
	padding-bottom: 20px;
}

.hl-section__heading::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 48px;
	height: 1px;
	background-color: var(--hl-gold);
}

/* =========================================================================
   Buttons
   ========================================================================= */

.hl-btn {
	display: inline-block;
	padding: 14px 36px;
	border-radius: 0;
	font-family: var(--hl-font);
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	border: none;
	cursor: pointer;
	transition: background-color var(--hl-transition), color var(--hl-transition), border-color var(--hl-transition);
}

.hl-btn--cta {
	background-color: var(--hl-cta);
	color: #ffffff;
}

.hl-btn--cta:hover {
	background-color: var(--hl-gold);
	color: #ffffff;
}

.hl-btn--large {
	padding: 18px 52px;
	font-size: 15px;
}

.hl-btn--small {
	padding: 10px 24px;
	font-size: 13px;
}

/* =========================================================================
   Hero Section
   ========================================================================= */

.hl-hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background-size: cover;
	background-position: center;
	background-color: var(--hl-primary);
}

.hl-hero__video {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	transform: translate(-50%, -50%);
	object-fit: cover;
	z-index: 0;
}

.hl-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to bottom,
		transparent 0%,
		rgba(0, 0, 0, 0.4) 50%,
		rgba(0, 0, 0, 1) 100%
	);
	z-index: 1;
}

.hl-hero__location {
	position: absolute;
	bottom: 24px;
	left: 28px;
	z-index: 2;
	color: #ffffff;
	font-size: 12px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.hl-hero__content {
	position: relative;
	z-index: 2;
	text-align: center;
	color: var(--hl-hero-text);
	padding: 20px;
	max-width: 800px;
	animation: hl-fade-in-up 1.2s var(--hl-transition) both;
}

.hl-hero__headline {
	font-family: var(--hl-font-heading);
	font-size: 56px;
	font-weight: 300;
	margin: 0 0 16px;
	line-height: 1.15;
	letter-spacing: 0.02em;
	color: var(--hl-hero-text);
}

.hl-hero__logo {
	max-height: 120px;
	max-width: 100%;
	width: auto;
	margin: 0 0 16px;
	object-fit: contain;
}

.hl-hero__subheadline {
	font-family: var(--hl-font);
	font-size: 16px;
	font-weight: 300;
	margin: 0 0 32px;
	opacity: 0.9;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.hl-hero__hook {
	font-family: var(--hl-font);
	font-size: 18px;
	font-weight: 300;
	font-style: italic;
	margin: 0 0 32px;
	opacity: 0.75;
	letter-spacing: 0.03em;
}

.hl-hero__trust {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 32px;
	font-size: 14px;
	font-weight: 400;
	color: var(--hl-hero-badge, var(--hl-hero-text));
	background: rgba(0, 0, 0, 0.35);
	backdrop-filter: blur(8px);
	padding: 8px 24px;
	border-radius: 100px;
	border: 1px solid rgba(255, 255, 255, 0.15);
	letter-spacing: 0.02em;
}

.hl-hero__stars {
	color: var(--hl-hero-badge, var(--hl-hero-text));
	font-weight: 600;
}

.hl-hero .hl-btn--cta {
	background-color: rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(4px);
	border: 1px solid rgba(255, 255, 255, 0.35);
	color: var(--hl-hero-text);
}

.hl-hero .hl-btn--cta:hover {
	background-color: rgba(255, 255, 255, 0.25);
	border-color: rgba(255, 255, 255, 0.5);
	color: var(--hl-hero-text);
}

.hl-hero__scroll-hint {
	position: absolute;
	bottom: 32px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	animation: hl-bounce 2s infinite;
}

.hl-hero__scroll-hint::before {
	content: '';
	display: block;
	width: 24px;
	height: 24px;
	border-right: 1.5px solid rgba(255, 255, 255, 0.6);
	border-bottom: 1.5px solid rgba(255, 255, 255, 0.6);
	transform: rotate(45deg);
}

@keyframes hl-fade-in-up {
	from {
		opacity: 0;
		transform: translateY(32px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes hl-bounce {
	0%, 20%, 50%, 80%, 100% {
		transform: translateX(-50%) translateY(0);
	}
	40% {
		transform: translateX(-50%) translateY(-8px);
	}
	60% {
		transform: translateX(-50%) translateY(-4px);
	}
}

/* =========================================================================
   USPs Section
   ========================================================================= */

.hl-usps__grid {
	display: grid;
	gap: 36px;
}

.hl-usps__grid--2 { grid-template-columns: repeat(2, 1fr); }
.hl-usps__grid--3 { grid-template-columns: repeat(3, 1fr); }
.hl-usps__grid--4 { grid-template-columns: repeat(4, 1fr); }

.hl-usp-card {
	text-align: center;
	padding: 44px 28px 40px;
	position: relative;
}

.hl-usp-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 32px;
	height: 1px;
	background-color: var(--hl-gold);
	transition: width var(--hl-transition);
}

.hl-usp-card:hover::before {
	width: 56px;
}

.hl-usp-card__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	margin: 0 auto 24px;
	border-radius: 50%;
	background: rgba(184, 149, 106, 0.08);
	transition: background var(--hl-transition);
}

.hl-usp-card:hover .hl-usp-card__icon {
	background: rgba(184, 149, 106, 0.14);
}

.hl-usp-card__svg {
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--hl-gold);
}

.hl-usp-card__svg svg {
	width: 28px;
	height: 28px;
}

.hl-usp-card__img {
	width: 32px;
	height: 32px;
	object-fit: contain;
	border-radius: 0;
}

.hl-usp-card__emoji {
	font-size: 28px;
	line-height: 1;
}

.hl-usp-card__title {
	font-family: var(--hl-font-heading);
	font-size: 15px;
	font-weight: 500;
	margin: 0 0 10px;
	color: var(--hl-primary);
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.hl-usp-card__desc {
	font-size: 14px;
	color: var(--hl-text-light);
	margin: 0;
	line-height: 1.8;
}

/* USPs - Dark Earthy Treatment */
.hl-usps {
	background: var(--hl-bg-dark);
}

.hl-usps .hl-usp-card__title {
	color: rgba(255, 255, 255, 0.92);
}

.hl-usps .hl-usp-card__desc {
	color: rgba(255, 255, 255, 0.55);
}

.hl-usps .hl-usp-card__icon {
	background: rgba(255, 255, 255, 0.06);
}

.hl-usps .hl-usp-card:hover .hl-usp-card__icon {
	background: rgba(255, 255, 255, 0.1);
}

/* =========================================================================
   Booking Widget
   ========================================================================= */

.hl-booking-widget__panel {
	display: grid;
	grid-template-columns: 1fr 1fr;
	overflow: hidden;
	border: 1px solid var(--hl-border);
	max-width: 100%;
}

.hl-booking-widget__pitch {
	background: var(--hl-bg-alt);
	padding: 56px 48px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.hl-booking-widget__eyebrow {
	display: block;
	font-size: 12px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--hl-gold);
	margin-bottom: 16px;
}

.hl-booking-widget__title {
	font-family: var(--hl-font-heading);
	font-size: 28px;
	font-weight: 300;
	color: var(--hl-primary);
	margin: 0 0 32px;
	line-height: 1.3;
	letter-spacing: 0.01em;
}

.hl-booking-widget__benefits {
	list-style: none;
	padding: 0;
	margin: 0 0 32px;
}

.hl-booking-widget__benefits li {
	position: relative;
	padding-left: 24px;
	padding-bottom: 14px;
	font-size: 15px;
	color: var(--hl-text);
	line-height: 1.5;
}

.hl-booking-widget__benefits li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 6px;
	width: 12px;
	height: 6px;
	border-left: 1.5px solid var(--hl-gold);
	border-bottom: 1.5px solid var(--hl-gold);
	transform: rotate(-45deg);
}

.hl-booking-widget__note {
	margin: 0;
	font-size: 13px;
	color: var(--hl-text-light);
	font-style: italic;
	line-height: 1.6;
}

.hl-booking-widget__wrapper {
	background: var(--hl-bg);
	padding: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 0;
	overflow: hidden;
}

.hl-booking-widget__wrapper iframe {
	display: block;
	width: 370px;
	max-width: 100%;
	height: 540px;
	border: none;
	transition: height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hl-booking-widget--expanded iframe {
	height: 760px;
}

/* =========================================================================
   Description
   ========================================================================= */

.hl-description__content {
	max-width: 720px;
	margin: 0 auto;
	font-size: 18px;
	line-height: 1.9;
	color: var(--hl-text);
}

.hl-description__content p {
	margin: 0 0 20px;
}

.hl-description__content p:first-of-type::first-letter {
	font-family: var(--hl-font-heading);
	font-weight: 300;
	font-size: 3.2em;
	float: left;
	line-height: 0.85;
	margin-right: 8px;
	margin-top: 4px;
	color: var(--hl-primary);
}

/* =========================================================================
   Highlights Section
   ========================================================================= */

.hl-highlights {
	background: var(--hl-bg-alt);
	position: relative;
}

.hl-highlights__eyebrow {
	display: block;
	text-align: center;
	font-size: 12px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--hl-gold);
	margin-bottom: 16px;
}

.hl-highlights__heading {
	font-family: var(--hl-font-heading);
	font-size: 32px;
	font-weight: 300;
	color: var(--hl-primary);
	text-align: center;
	margin: 0 0 64px;
	letter-spacing: 0.02em;
	line-height: 1.3;
}

.hl-highlights__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	max-width: 960px;
	margin: 0 auto;
}

.hl-highlight-card {
	text-align: left;
	padding: 48px 44px;
	position: relative;
	border-bottom: 1px solid var(--hl-border);
}

.hl-highlight-card:nth-child(odd) {
	border-right: 1px solid var(--hl-border);
}

.hl-highlight-card:nth-last-child(-n+2) {
	border-bottom: none;
}

.hl-highlight-card__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 24px;
}

.hl-highlight-card__icon {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: rgba(184, 149, 106, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background var(--hl-transition), transform var(--hl-transition);
}

.hl-highlight-card:hover .hl-highlight-card__icon {
	background: rgba(184, 149, 106, 0.18);
	transform: scale(1.05);
}

.hl-highlight-card__icon .hl-usp-card__svg {
	color: var(--hl-gold);
}

.hl-highlight-card__icon .hl-usp-card__svg svg {
	width: 28px;
	height: 28px;
}

.hl-highlight-card__number {
	font-family: var(--hl-font-heading);
	font-size: 40px;
	font-weight: 300;
	color: var(--hl-border);
	line-height: 1;
	letter-spacing: -0.02em;
	transition: color var(--hl-transition);
}

.hl-highlight-card:hover .hl-highlight-card__number {
	color: rgba(184, 149, 106, 0.35);
}

.hl-highlight-card__title {
	font-family: var(--hl-font-heading);
	font-size: 17px;
	font-weight: 500;
	color: var(--hl-primary);
	letter-spacing: 0.03em;
	text-transform: uppercase;
	margin: 0 0 12px;
}

.hl-highlight-card__desc {
	font-size: 15px;
	color: var(--hl-text-light);
	line-height: 1.85;
	margin: 0;
}

/* =========================================================================
   Gallery
   ========================================================================= */

.hl-gallery__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
}

.hl-gallery__grid .hl-gallery__item:first-child {
	grid-column: span 2;
	grid-row: span 2;
}

.hl-gallery__item {
	display: block;
	border-radius: var(--hl-radius);
	overflow: hidden;
	cursor: pointer;
	aspect-ratio: 4/3;
	position: relative;
}

.hl-gallery__item::after {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0);
	transition: background var(--hl-transition);
}

.hl-gallery__item:hover::after {
	background: rgba(0, 0, 0, 0.08);
}

.hl-gallery__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.hl-gallery__batch {
	display: none;
}

.hl-gallery__batch--visible {
	display: contents;
}

.hl-gallery__toggle {
	display: block;
	margin: 40px auto 0;
	padding: 12px 36px;
	background: transparent;
	border: none;
	border-bottom: 1px solid var(--hl-gold);
	color: var(--hl-text);
	font-family: var(--hl-font);
	font-size: 13px;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	cursor: pointer;
	transition: color var(--hl-transition), border-color var(--hl-transition);
}

.hl-gallery__toggle:hover {
	color: var(--hl-gold);
}

/* =========================================================================
   Amenities
   ========================================================================= */

.hl-amenities {
	background: var(--hl-bg-alt);
}

.hl-amenities__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px 24px;
}

.hl-amenity {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 14px 0;
	font-size: 15px;
	border-bottom: 1px solid transparent;
}

.hl-amenity__icon {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(184, 149, 106, 0.08);
	color: var(--hl-gold);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background var(--hl-transition);
}

.hl-amenity:hover .hl-amenity__icon {
	background: rgba(184, 149, 106, 0.14);
}

.hl-amenity__icon svg {
	width: 20px;
	height: 20px;
}

.hl-amenity__name {
	color: var(--hl-text);
	font-weight: 400;
	letter-spacing: 0.01em;
}

.hl-amenities__grid--featured .hl-amenity:nth-child(10) {
	display: none;
}

.hl-amenities__grid--featured .hl-amenity:nth-last-child(-n+3) {
	border-bottom: none;
}

@media (max-width: 899px) {
	.hl-amenities__grid--featured .hl-amenity:nth-child(10) {
		display: flex;
	}

	.hl-amenities__grid--featured .hl-amenity:nth-last-child(-n+2) {
		border-bottom: none;
	}
}

.hl-amenities__grid--more {
	transition: opacity 0.4s ease;
}

.hl-amenities__grid--hidden {
	max-height: 0;
	opacity: 0;
	overflow: hidden;
}

.hl-amenities__grid--visible {
	max-height: none;
	opacity: 1;
	overflow: visible;
}

.hl-amenities__grid--more .hl-amenity:nth-last-child(-n+3) {
	border-bottom: none;
}

@media (max-width: 899px) {
	.hl-amenities__grid--more .hl-amenity:nth-last-child(-n+2) {
		border-bottom: none;
	}
}

.hl-amenities__toggle {
	display: block;
	margin: 40px auto 0;
	padding: 12px 36px;
	background: transparent;
	border: none;
	border-bottom: 1px solid var(--hl-gold);
	color: var(--hl-text);
	font-family: var(--hl-font);
	font-size: 13px;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	cursor: pointer;
	transition: color var(--hl-transition), border-color var(--hl-transition);
}

.hl-amenities__toggle:hover {
	color: var(--hl-gold);
}

/* =========================================================================
   Location
   ========================================================================= */

.hl-location__content {
	max-width: 720px;
	margin: 0 auto;
	font-size: 17px;
	line-height: 1.8;
	text-align: center;
}

/* =========================================================================
   Host Info
   ========================================================================= */

.hl-host-card {
	display: flex;
	align-items: center;
	gap: 40px;
	max-width: 600px;
	margin: 0 auto;
	padding: 0;
}

.hl-host-card__photo {
	flex-shrink: 0;
	position: relative;
}

.hl-host-card__photo::after {
	content: '';
	position: absolute;
	inset: -6px;
	border-radius: 50%;
	border: 1px solid rgba(184, 149, 106, 0.3);
}

.hl-host-card__img {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	object-fit: cover;
}

.hl-host-card__name {
	font-family: var(--hl-font-heading);
	font-size: 22px;
	font-weight: 300;
	margin: 0 0 4px;
	color: var(--hl-primary);
	letter-spacing: 0.02em;
}

.hl-host-card__label {
	font-size: 12px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--hl-gold);
	margin: 0 0 12px;
	display: block;
}

.hl-host-card__bio {
	margin: 0;
	color: var(--hl-text-light);
	font-size: 15px;
	line-height: 1.8;
}

/* =========================================================================
   Reviews Override (match listing page typography)
   ========================================================================= */

.hl-reviews .hospitable-reviews {
	--hr-font: var(--hl-font);
	--hr-text: var(--hl-text);
	--hr-primary: var(--hl-accent);
	--hr-star: var(--hl-gold);
	font-family: var(--hl-font);
	color: var(--hl-text);
	line-height: 1.75;
}

/* =========================================================================
   Trust Badges
   ========================================================================= */

.hl-trust-badges {
	background: var(--hl-bg-alt);
	padding: 32px 0;
}

.hl-trust-badges .hl-container {
	display: flex;
	justify-content: center;
	gap: 40px;
	flex-wrap: wrap;
	align-items: center;
}

.hl-trust-badge__img {
	height: 40px;
	width: auto;
	filter: grayscale(0.3);
	opacity: 0.7;
	transition: filter var(--hl-transition), opacity var(--hl-transition);
}

.hl-trust-badge__img:hover {
	filter: none;
	opacity: 1;
}

.hl-trust-badges a {
	display: inline-flex;
	line-height: 0;
}

/* =========================================================================
   More Listings
   ========================================================================= */

.hl-more-listings {
	background: var(--hl-bg-alt);
}

.hl-more-listings__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.hl-property-card {
	text-decoration: none;
	color: inherit;
	display: block;
}

.hl-property-card__image {
	aspect-ratio: 4/3;
	border-radius: 12px;
	overflow: hidden;
}

.hl-property-card__img {
	object-fit: cover;
	width: 100%;
	height: 100%;
	display: block;
	transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hl-property-card:hover .hl-property-card__img {
	transform: scale(1.04);
}

.hl-property-card__title {
	font-family: var(--hl-font-heading);
	font-weight: 400;
	font-size: 17px;
	margin: 14px 0 4px;
	color: var(--hl-primary);
}

.hl-property-card__location {
	font-size: 13px;
	color: var(--hl-text-light);
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

/* =========================================================================
   Properties Hero Banner
   ========================================================================= */

.hl-properties-hero {
	background: var(--hl-primary, #2c2c2c);
	color: #ffffff;
	padding: 80px 24px;
	text-align: center;
	font-family: var(--hl-font, 'Quicksand', sans-serif);
	-webkit-font-smoothing: antialiased;
}

.hl-properties-hero__content {
	max-width: 720px;
	margin: 0 auto;
	animation: hl-fade-in-up 1s ease both;
}

.hl-properties-hero__eyebrow {
	display: block;
	font-size: 11px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: var(--hl-gold, #b8956a);
	margin-bottom: 20px;
}

.hl-properties-hero__title {
	font-family: var(--hl-font-heading, 'Quicksand', sans-serif);
	font-size: 40px;
	font-weight: 300;
	color: #ffffff;
	margin: 0 0 16px;
	line-height: 1.2;
	letter-spacing: 0.02em;
	position: relative;
	padding-bottom: 24px;
}

.hl-properties-hero__title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 48px;
	height: 1px;
	background: var(--hl-gold, #b8956a);
}

.hl-properties-hero__subtitle {
	font-size: 16px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.7);
	margin: 0 0 40px;
	line-height: 1.6;
}

.hl-properties-hero__stats {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 32px;
	margin-bottom: 40px;
}

.hl-properties-hero__stat {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.hl-properties-hero__stat-value {
	font-size: 32px;
	font-weight: 300;
	letter-spacing: 0.02em;
	color: var(--hl-gold, #b8956a);
	line-height: 1;
	margin-bottom: 6px;
}

.hl-properties-hero__stat-label {
	font-size: 12px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: rgba(255, 255, 255, 0.5);
}

.hl-properties-hero__stat + .hl-properties-hero__stat {
	position: relative;
}

.hl-properties-hero__stat + .hl-properties-hero__stat::before {
	content: '';
	position: absolute;
	left: -16px;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 32px;
	background: rgba(255, 255, 255, 0.15);
}

.hl-properties-hero__cta {
	display: inline-block;
	padding: 14px 36px;
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: #ffffff;
	font-family: var(--hl-font, 'Quicksand', sans-serif);
	font-size: 13px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	text-decoration: none;
	transition: background 0.25s ease, border-color 0.25s ease;
}

.hl-properties-hero__cta:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.6);
	color: #ffffff;
}

/* =========================================================================
   Properties Grid (All Properties / Shortcode)
   ========================================================================= */

.hl-properties {
	padding: 64px 0 96px;
}

.hl-properties__grid {
	display: grid;
	gap: 40px;
}

.hl-properties__grid--2col {
	grid-template-columns: repeat(2, 1fr);
}

.hl-properties__grid--1col {
	grid-template-columns: 1fr;
}

.hl-properties__grid--3col {
	grid-template-columns: repeat(3, 1fr);
}

.hl-properties__card {
	background: var(--hl-bg);
	border-radius: var(--hl-radius);
	overflow: hidden;
	box-shadow: var(--hl-shadow);
	transition: box-shadow var(--hl-transition), transform var(--hl-transition);
}

.hl-properties__card:hover {
	box-shadow: var(--hl-shadow-lg);
}

.hl-properties__card-link {
	display: block;
	text-decoration: none;
	color: inherit;
}

.hl-properties__card-image {
	position: relative;
	aspect-ratio: 16/10;
	overflow: hidden;
}

.hl-properties__card-image::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 50%;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.45), transparent);
	pointer-events: none;
	z-index: 1;
}

.hl-properties__card-img {
	object-fit: cover;
	width: 100%;
	height: 100%;
	display: block;
	transition: transform var(--hl-transition);
}

.hl-properties__card:hover .hl-properties__card-img {
	transform: scale(1.03);
}

.hl-properties__card-badge {
	position: absolute;
	top: 14px;
	left: 18px;
	z-index: 2;
	background: var(--hl-gold, #b8956a);
	color: #ffffff;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	padding: 5px 12px;
	line-height: 1;
}

.hl-properties__card-location {
	position: absolute;
	bottom: 14px;
	left: 18px;
	z-index: 2;
	color: #ffffff;
	font-size: 12px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.hl-properties__card-body {
	padding: 28px 28px 32px;
}

.hl-properties__card-title {
	font-family: var(--hl-font-heading);
	font-size: 22px;
	font-weight: 300;
	color: var(--hl-primary);
	margin: 0 0 12px;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	position: relative;
	padding-bottom: 16px;
}

.hl-properties__card-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 36px;
	height: 1px;
	background-color: var(--hl-gold);
}

.hl-properties__card-stats {
	font-size: 13px;
	color: var(--hl-text-light);
	margin: 0 0 14px;
	letter-spacing: 0.02em;
}

.hl-properties__card-excerpt {
	font-size: 15px;
	line-height: 1.7;
	color: var(--hl-text);
	margin: 0 0 20px;
}

.hl-properties__card-amenities {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 20px;
	margin-bottom: 24px;
}

.hl-properties__card-amenity {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	color: var(--hl-text-light);
}

.hl-properties__card-amenity-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	color: var(--hl-gold);
}

.hl-properties__card-amenity-icon svg {
	width: 16px;
	height: 16px;
}

.hl-properties__card-btn {
	display: inline-block;
}

/* Featured card — spans full row, horizontal layout */
.hl-properties__card--featured {
	grid-column: 1 / -1;
}

.hl-properties__card--featured .hl-properties__card-link {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
}

.hl-properties__card--featured .hl-properties__card-image {
	aspect-ratio: 4/3;
}

.hl-properties__card--featured .hl-properties__card-body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 40px 48px;
}

.hl-properties__card--featured .hl-properties__card-title {
	font-size: 28px;
}

.hl-properties__card--featured .hl-properties__card-excerpt {
	-webkit-line-clamp: 4;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.hl-properties__card-badge--featured {
	background: var(--hl-gold, #b8956a);
}

/* =========================================================================
   FAQ
   ========================================================================= */

.hl-faq__list {
	max-width: 720px;
	margin: 0 auto;
}

.hl-faq__item {
	border-bottom: 1px solid var(--hl-border);
}

.hl-faq__item:first-child {
	border-top: 1px solid var(--hl-border);
}

.hl-faq__question {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 24px 0;
	border: none;
	background: none;
	font-family: var(--hl-font);
	font-size: 16px;
	font-weight: 400;
	color: var(--hl-text);
	text-align: left;
	cursor: pointer;
	letter-spacing: 0.01em;
	transition: color var(--hl-transition);
}

.hl-faq__question:hover {
	color: var(--hl-gold);
}

.hl-faq__chevron {
	flex-shrink: 0;
	width: 16px;
	height: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--hl-gold);
	opacity: 0.5;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.hl-faq__question:hover .hl-faq__chevron {
	opacity: 1;
}

[aria-expanded="true"] .hl-faq__chevron {
	transform: rotate(180deg);
	opacity: 1;
}

.hl-faq__answer {
	padding: 0 0 24px;
	font-size: 15px;
	color: var(--hl-text-light);
	line-height: 1.8;
}

.hl-faq__answer[hidden] {
	display: none;
}

.hl-faq__answer p {
	margin: 0;
}

.hl-faq__answer ul {
	margin: 0;
	padding-left: 20px;
	list-style: none;
}

.hl-faq__answer li {
	margin-bottom: 6px;
	position: relative;
	padding-left: 16px;
}

.hl-faq__answer li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 10px;
	width: 6px;
	height: 1px;
	background: var(--hl-gold);
}

/* =========================================================================
   Final CTA
   ========================================================================= */

.hl-final-cta {
	background: var(--hl-primary);
	text-align: center;
	padding: 120px 0;
}

.hl-final-cta__headline {
	font-family: var(--hl-font-heading);
	font-size: 36px;
	font-weight: 300;
	color: #ffffff;
	margin: 0 0 16px;
	letter-spacing: 0.02em;
}

.hl-final-cta__subtext {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.7);
	margin: 0 0 40px;
	font-weight: 300;
}

.hl-final-cta .hl-btn--cta {
	background-color: transparent;
	border: 1px solid rgba(255, 255, 255, 0.4);
	color: #ffffff;
}

.hl-final-cta .hl-btn--cta:hover {
	background-color: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.8);
	color: #ffffff;
}

/* =========================================================================
   Promo Banner
   ========================================================================= */

.hl-promo-banner__text {
	margin: 0;
	font-size: 13px;
	font-weight: 600;
	text-align: center;
	letter-spacing: 0.03em;
}

.hl-promo-banner--top {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 2147483646;
	background: var(--hl-cta, #059669);
	color: #fff;
	padding: 10px 24px;
	transform: translateY(-100%);
	transition: transform 0.3s;
}

.hl-promo-banner--top.hl-promo-banner--visible {
	transform: translateY(0);
}

/* Push theme's sticky / fixed header below the promo banner.
   --hl-promo-offset is set by JS on <html> when the banner is visible. */
:root {
	--hl-promo-offset: 0px;
}

.hl-promo-banner--bottom {
	background: var(--hl-cta, #059669);
	color: #fff;
	padding: 8px 24px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

/* =========================================================================
   Sticky Bar (Mobile)
   ========================================================================= */

.hl-sticky-bar {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 2147483647;
	background: rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-top: 1px solid var(--hl-border);
	box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.04);
	transform: translateY(100%);
	transition: transform 0.3s;
}

.hl-sticky-bar--visible {
	transform: translateY(0);
}

.hl-sticky-bar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 24px;
	max-width: 1200px;
	margin: 0 auto;
}

.hl-sticky-bar__name {
	font-weight: 500;
	font-size: 14px;
	margin-right: 12px;
	letter-spacing: 0.01em;
	line-height: 1.3;
}

/* =========================================================================
   Lightbox
   ========================================================================= */

.hl-lightbox {
	position: fixed;
	inset: 0;
	z-index: 10000;
	background: rgba(0, 0, 0, 0.92);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s;
}

.hl-lightbox--active {
	opacity: 1;
}

.hl-lightbox__img {
	max-width: 90vw;
	max-height: 85vh;
	object-fit: contain;
}

.hl-lightbox__counter {
	position: absolute;
	bottom: 24px;
	left: 50%;
	transform: translateX(-50%);
	color: rgba(255, 255, 255, 0.6);
	font-family: var(--hl-font);
	font-size: 14px;
	font-weight: 300;
	letter-spacing: 0.08em;
}

.hl-lightbox__close {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 44px;
	height: 44px;
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 0;
	color: #ffffff;
	font-size: 20px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: border-color 0.2s;
}

.hl-lightbox__close:hover {
	border-color: rgba(255, 255, 255, 0.6);
}

.hl-lightbox__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 44px;
	height: 44px;
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 0;
	color: #ffffff;
	font-size: 20px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: border-color 0.2s;
}

.hl-lightbox__nav:hover {
	border-color: rgba(255, 255, 255, 0.6);
}

.hl-lightbox__prev { left: 20px; }
.hl-lightbox__next { right: 20px; }

/* =========================================================================
   Booking Modal
   ========================================================================= */

.hl-booking-modal {
	position: fixed;
	inset: 0;
	z-index: 10001;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.3s, visibility 0.3s;
	font-family: 'Quicksand', sans-serif;
	-webkit-font-smoothing: antialiased;

	/* Modal sits outside .hl-listing — define vars locally */
	--hl-font: 'Quicksand', sans-serif;
	--hl-font-heading: 'Quicksand', sans-serif;
	--hl-primary: #2c2c2c;
	--hl-text: #3a3a3a;
	--hl-text-light: #8a8a8a;
	--hl-gold: #b8956a;
	--hl-cta: #059669;
	--hl-bg: #ffffff;
	--hl-bg-alt: #faf8f5;
	--hl-border: #e8e4df;
	--hl-transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hl-booking-modal--active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.hl-booking-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.hl-booking-modal__dialog {
	position: relative;
	width: 100%;
	max-width: 1020px;
	max-height: calc(100vh - 48px);
	margin: 24px;
	background: var(--hl-bg);
	box-shadow: 0 16px 64px rgba(0, 0, 0, 0.12);
	overflow: visible;
}

.hl-booking-modal__close {
	position: absolute;
	top: 16px;
	right: 16px;
	z-index: 2;
	width: 40px;
	height: 40px;
	background: transparent;
	border: none;
	color: var(--hl-text-light);
	font-size: 24px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: color 0.2s;
}

.hl-booking-modal__close:hover {
	color: var(--hl-primary);
}

.hl-booking-modal__panel {
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.hl-booking-modal__pitch {
	background: var(--hl-bg-alt);
	padding: 56px 48px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.hl-booking-modal__eyebrow {
	display: block;
	font-size: 12px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--hl-gold);
	margin-bottom: 16px;
}

.hl-booking-modal__title {
	font-family: var(--hl-font-heading);
	font-size: 28px;
	font-weight: 300;
	color: var(--hl-primary);
	margin: 0 0 32px;
	line-height: 1.3;
	letter-spacing: 0.01em;
}

.hl-booking-modal__benefits {
	list-style: none;
	padding: 0;
	margin: 0 0 32px;
}

.hl-booking-modal__benefits li {
	position: relative;
	padding-left: 24px;
	padding-bottom: 14px;
	font-size: 15px;
	color: var(--hl-text);
	line-height: 1.5;
}

.hl-booking-modal__benefits li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 6px;
	width: 12px;
	height: 6px;
	border-left: 1.5px solid var(--hl-gold);
	border-bottom: 1.5px solid var(--hl-gold);
	transform: rotate(-45deg);
}

.hl-booking-modal__note {
	margin: 0;
	font-size: 13px;
	color: var(--hl-text-light);
	font-style: italic;
	line-height: 1.6;
}

.hl-booking-modal__widget {
	background: var(--hl-bg);
	padding: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hl-booking-modal__widget iframe {
	display: block;
	width: 370px;
	height: 540px;
	border: none;
	transition: height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hl-booking-modal__widget.hl-booking-widget--expanded iframe {
	height: 760px;
}

@media (max-width: 900px) {
	.hl-booking-modal__dialog {
		max-width: 560px;
	}

	.hl-booking-modal__panel {
		grid-template-columns: 1fr;
	}

	.hl-booking-modal__pitch {
		padding: 32px 28px 24px;
	}

	.hl-booking-modal__title {
		font-size: 22px;
		margin-bottom: 16px;
	}

	.hl-booking-modal__benefits {
		margin-bottom: 16px;
	}

	.hl-booking-modal__widget {
		padding: 20px;
	}
}

@media (max-width: 639px) {
	.hl-booking-modal {
		align-items: flex-end;
	}

	.hl-booking-modal__dialog {
		margin: 0;
		max-width: 100%;
		height: 100vh;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
	}

	.hl-booking-modal__close {
		top: 12px;
		right: 12px;
		width: 36px;
		height: 36px;
		font-size: 22px;
		background: rgba(0, 0, 0, 0.04);
		border-radius: 50%;
	}

	.hl-booking-modal__panel {
		grid-template-columns: 1fr;
	}

	.hl-booking-modal__pitch {
		padding: 24px 20px 16px;
	}

	.hl-booking-modal__eyebrow {
		font-size: 11px;
		margin-bottom: 8px;
	}

	.hl-booking-modal__title {
		font-size: 18px;
		margin-bottom: 12px;
	}

	.hl-booking-modal__benefits {
		display: flex;
		flex-wrap: wrap;
		gap: 6px;
		margin-bottom: 0;
	}

	.hl-booking-modal__benefits li {
		font-size: 12px;
		padding: 5px 12px;
		background: var(--hl-bg);
		border-radius: 100px;
		white-space: nowrap;
	}

	.hl-booking-modal__benefits li::before {
		position: static;
		display: inline-block;
		margin-right: 6px;
		vertical-align: middle;
		width: 10px;
		height: 5px;
		top: auto;
	}

	.hl-booking-modal__note {
		display: none;
	}

	.hl-booking-modal__widget {
		padding: 12px;
	}

	.hl-booking-modal__widget iframe {
		width: 100%;
		max-width: 370px;
	}

	.hl-sticky-bar__inner {
		padding: 8px 16px;
	}

	.hl-sticky-bar .hl-btn--small {
		padding: 7px 16px;
		font-size: 12px;
	}
}

/* =========================================================================
   FOMO Exit Prompt
   ========================================================================= */

.hl-fomo {
	position: absolute;
	inset: 0;
	z-index: 10;
	display: none;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.88);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.hl-fomo--active {
	opacity: 1;
}

.hl-fomo__card {
	text-align: center;
	max-width: 340px;
	padding: 48px 36px 40px;
}

.hl-fomo__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: rgba(184, 149, 106, 0.08);
	color: var(--hl-gold);
	margin-bottom: 20px;
}

.hl-fomo__title {
	font-family: var(--hl-font-heading);
	font-weight: 300;
	font-size: 22px;
	color: var(--hl-primary);
	margin: 0 0 10px;
	letter-spacing: 0.02em;
}

.hl-fomo__text {
	font-family: var(--hl-font);
	font-weight: 400;
	font-size: 15px;
	color: var(--hl-text-light);
	line-height: 1.7;
	margin: 0 0 28px;
}

.hl-fomo__stay {
	display: block;
	width: 100%;
	padding: 14px 24px;
	border: none;
	border-radius: 0;
	background: var(--hl-primary);
	color: #ffffff;
	font-family: var(--hl-font);
	font-weight: 500;
	font-size: 14px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background var(--hl-transition);
	margin-bottom: 12px;
}

.hl-fomo__stay:hover {
	background: var(--hl-gold);
}

.hl-fomo__leave {
	display: block;
	width: 100%;
	padding: 10px 24px;
	border: none;
	border-radius: 0;
	background: transparent;
	color: var(--hl-text-light);
	font-family: var(--hl-font);
	font-weight: 400;
	font-size: 13px;
	letter-spacing: 0.04em;
	cursor: pointer;
	transition: color 0.3s ease;
}

.hl-fomo__leave:hover {
	color: var(--hl-primary);
}

@media (max-width: 639px) {
	.hl-fomo__card {
		padding: 36px 24px 32px;
	}

	.hl-fomo__title {
		font-size: 20px;
	}
}

/* =========================================================================
   Scroll Reveal Animations
   ========================================================================= */

.hl-reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.8s var(--hl-transition), transform 0.8s var(--hl-transition);
}

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

/* =========================================================================
   Responsive - Tablet (< 1024px)
   ========================================================================= */

@media (max-width: 1023px) {
	.hl-hero__video {
		object-fit: cover;
	}

	.hl-usps__grid--3,
	.hl-usps__grid--4 {
		grid-template-columns: repeat(2, 1fr);
	}

	.hl-highlight-card {
		padding: 36px 32px;
	}

	.hl-amenities__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.hl-gallery__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.hl-gallery__grid .hl-gallery__item:first-child {
		grid-column: span 2;
		grid-row: span 1;
	}

	.hl-more-listings__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.hl-properties__grid--3col {
		grid-template-columns: repeat(2, 1fr);
	}

	.hl-properties__grid--2col,
	.hl-properties__grid--3col {
		gap: 24px;
	}

	.hl-booking-widget__panel {
		grid-template-columns: 1fr;
	}

	.hl-booking-widget__pitch {
		padding: 40px 32px;
	}

	.hl-booking-widget__wrapper iframe {
		width: 100%;
		max-width: 370px;
	}
}

/* =========================================================================
   Responsive - Mobile (< 640px)
   ========================================================================= */

@media (max-width: 639px) {
	.hl-hero {
		min-height: 70vh;
	}

	.hl-hero__video {
		object-fit: cover;
	}

	.hl-hero__headline {
		font-size: 36px;
	}

	.hl-hero__subheadline {
		font-size: 14px;
	}

	.hl-hero__hook {
		font-size: 15px;
	}

	.hl-section {
		padding: 56px 0;
	}

	.hl-section__heading {
		font-size: 22px;
		margin-bottom: 32px;
	}

	.hl-usps__grid--2,
	.hl-usps__grid--3,
	.hl-usps__grid--4 {
		grid-template-columns: 1fr;
	}

	.hl-highlights__heading {
		font-size: 24px;
		margin-bottom: 40px;
	}

	.hl-highlights__grid {
		grid-template-columns: 1fr;
	}

	.hl-highlight-card {
		padding: 32px 0;
	}

	.hl-highlight-card:nth-child(odd) {
		border-right: none;
	}

	.hl-highlight-card:last-child {
		border-bottom: none;
	}

	.hl-highlight-card:nth-last-child(2) {
		border-bottom: 1px solid var(--hl-border);
	}

	.hl-highlight-card__number {
		font-size: 32px;
	}

	.hl-amenities__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.hl-gallery__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.hl-gallery__grid .hl-gallery__item:first-child {
		grid-column: span 1;
		grid-row: span 1;
	}

	.hl-gallery__toggle {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 2px;
	}

	.hl-more-listings__grid {
		grid-template-columns: 1fr;
	}

	.hl-properties-hero {
		padding: 56px 20px;
	}

	.hl-properties-hero__title {
		font-size: 28px;
	}

	.hl-properties-hero__subtitle {
		font-size: 15px;
		margin-bottom: 32px;
	}

	.hl-properties-hero__stats {
		gap: 24px;
	}

	.hl-properties-hero__stat-value {
		font-size: 24px;
	}

	.hl-properties-hero__stat-label {
		font-size: 11px;
	}

	.hl-properties-hero__stat + .hl-properties-hero__stat::before {
		left: -12px;
		height: 24px;
	}

	.hl-properties__grid--2col,
	.hl-properties__grid--3col {
		grid-template-columns: 1fr;
	}

	.hl-properties__card-body {
		padding: 20px 20px 24px;
	}

	.hl-properties__card-title {
		font-size: 19px;
	}

	.hl-properties__card--featured .hl-properties__card-link {
		grid-template-columns: 1fr;
	}

	.hl-properties__card--featured .hl-properties__card-body {
		padding: 20px 20px 24px;
	}

	.hl-properties__card--featured .hl-properties__card-title {
		font-size: 19px;
	}

	.hl-trust-badges .hl-container {
		gap: 24px;
	}

	.hl-faq__question {
		font-size: 15px;
		padding: 20px 0;
	}

	.hl-host-card {
		flex-direction: column;
		text-align: center;
		gap: 28px;
	}

	.hl-booking-widget .hl-container {
		padding: 0;
	}

	.hl-booking-widget__panel {
		border-left: none;
		border-right: none;
	}

	.hl-booking-widget__pitch {
		padding: 28px 20px;
		text-align: center;
	}

	.hl-booking-widget__title {
		font-size: 22px;
		margin-bottom: 16px;
	}

	.hl-booking-widget__benefits {
		display: inline-block;
		text-align: left;
	}

	.hl-booking-widget__benefits li {
		font-size: 14px;
		padding-bottom: 10px;
	}

	.hl-booking-widget__note {
		display: none;
	}

	.hl-booking-widget__wrapper {
		padding: 0;
		justify-content: center;
	}

	.hl-booking-widget__wrapper iframe {
		width: 100vw;
		max-width: 370px;
		height: 600px;
	}

	.hl-booking-widget__wrapper.hl-booking-widget--expanded iframe {
		height: 760px;
	}

	.hl-booking-widget--desktop-only {
		display: none;
	}

	.hl-booking-modal__widget iframe {
		height: 600px;
	}

	.hl-booking-modal__widget.hl-booking-widget--expanded iframe {
		height: 760px;
	}

	.hl-final-cta {
		padding: 80px 0;
	}

	.hl-final-cta__headline {
		font-size: 28px;
	}

	.hl-description__content,
	.hl-location__content {
		font-size: 16px;
	}

	.hl-description__content p:first-of-type::first-letter {
		font-size: 2.6em;
	}

	.hl-lightbox__nav {
		width: 36px;
		height: 36px;
		font-size: 16px;
	}

	.hl-lightbox__prev { left: 8px; }
	.hl-lightbox__next { right: 8px; }

	/* Smaller promo / sticky text on mobile */
	.hl-promo-banner__text {
		font-size: 11px;
		letter-spacing: 0.02em;
	}

	.hl-promo-banner--top {
		padding: 7px 16px;
	}

	.hl-promo-banner--bottom {
		padding: 6px 16px;
	}

	.hl-sticky-bar__name {
		font-size: 12px;
	}

	/* Tighten hero stacking on mobile */
	.hl-hero__content {
		padding-bottom: 60px;
		gap: 0;
	}

	.hl-hero__subheadline {
		margin-bottom: 20px;
	}

	.hl-hero__hook {
		margin-bottom: 20px;
	}

	.hl-hero__trust {
		margin-bottom: 16px;
		font-size: 12px;
		padding: 6px 16px;
	}

	.hl-hero .hl-btn--cta {
		padding: 10px 28px;
		font-size: 12px;
	}

	.hl-hero__location {
		bottom: 16px;
		left: 16px;
		font-size: 11px;
	}
}

/* =========================================================================
   Reduced Motion
   ========================================================================= */

@media (prefers-reduced-motion: reduce) {
	.hl-btn,
	.hl-usp-card,
	.hl-usp-card::before,
	.hl-usp-card__icon,
	.hl-highlight-card__icon,
	.hl-highlight-card__number,
	.hl-gallery__item,
	.hl-gallery__item::after,
	.hl-sticky-bar,
	.hl-promo-banner--top,
	.hl-lightbox,
	.hl-amenity__icon,
	.hl-amenities__grid--more,
	.hl-amenities__toggle,
	.hl-gallery__toggle,
	.hl-booking-modal,
	.hl-faq__chevron,
	.hl-faq__question,
	.hl-trust-badge__img,
	.hl-property-card__img {
		transition: none;
	}

	.hl-hero__video {
		display: none;
	}

	.hl-hero__content {
		animation: none;
	}

	.hl-hero__scroll-hint {
		animation: none;
	}

	.hl-reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

/* =========================================================================
   Print
   ========================================================================= */

@media print {
	.hl-hero__video,
	.hl-sticky-bar,
	.hl-promo-banner--top,
	.hl-lightbox,
	.hl-booking-modal,
	.hl-booking-widget,
	.hl-hero__scroll-hint,
	.hl-amenities__toggle,
	.hl-gallery__toggle {
		display: none;
	}

	.hl-gallery__batch {
		display: contents;
	}

	.hl-hero {
		min-height: auto;
		padding: 40px 0;
		background: none;
		color: var(--hl-text);
	}

	.hl-hero__overlay,
	.hl-hero__location {
		display: none;
	}

	.hl-hero__headline {
		color: var(--hl-primary);
	}

	.hl-section {
		padding: 24px 0;
	}

	.hl-final-cta {
		background: none;
		padding: 24px 0;
	}

	.hl-final-cta__headline {
		color: var(--hl-primary);
	}

	.hl-final-cta__subtext {
		color: var(--hl-text-light);
	}

	.hl-reveal {
		opacity: 1;
		transform: none;
	}

	.hl-amenities__grid--hidden {
		max-height: none;
		opacity: 1;
	}

	.hl-usps,
	.hl-highlights {
		background: none;
	}

	.hl-usps .hl-usp-card__title {
		color: var(--hl-primary);
	}

	.hl-usps .hl-usp-card__desc {
		color: var(--hl-text-light);
	}
}

/* =========================================================================
 * Signup Form Section (Coming Soon) — matches Booking Widget design
 * ========================================================================= */

.hl-signup-form__panel {
	display: grid;
	grid-template-columns: 1fr 1fr;
	overflow: hidden;
	border: 1px solid var(--hl-border);
	max-width: 100%;
}

.hl-signup-form__pitch {
	background: var(--hl-bg-alt);
	padding: 56px 48px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.hl-signup-form__eyebrow {
	display: block;
	font-size: 12px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--hl-gold);
	margin-bottom: 16px;
}

.hl-signup-form__title {
	font-family: var(--hl-font-heading);
	font-size: 28px;
	font-weight: 300;
	color: var(--hl-primary);
	margin: 0 0 32px;
	line-height: 1.3;
	letter-spacing: 0.01em;
}

.hl-signup-form__benefits {
	list-style: none;
	padding: 0;
	margin: 0 0 32px;
}

.hl-signup-form__benefits li {
	position: relative;
	padding-left: 24px;
	padding-bottom: 14px;
	font-size: 15px;
	color: var(--hl-text);
	line-height: 1.5;
}

.hl-signup-form__benefits li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 6px;
	width: 12px;
	height: 6px;
	border-left: 1.5px solid var(--hl-gold);
	border-bottom: 1.5px solid var(--hl-gold);
	transform: rotate(-45deg);
}

.hl-signup-form__note {
	margin: 0;
	font-size: 13px;
	color: var(--hl-text-light);
	font-style: italic;
	line-height: 1.6;
}

.hl-signup-form__form-wrap {
	background: var(--hl-bg);
	padding: 56px 48px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.hl-signup-form__heading {
	font-family: var(--hl-font-heading);
	font-size: 20px;
	font-weight: 500;
	color: var(--hl-primary);
	margin: 0 0 24px;
	line-height: 1.3;
}

.hl-signup-form__form {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.hl-signup-form__input {
	width: 100%;
	padding: 14px 16px;
	border: 1px solid var(--hl-border);
	background: var(--hl-bg);
	color: var(--hl-text);
	font-size: 15px;
	font-family: var(--hl-font);
	outline: none;
	transition: border-color 0.2s;
	box-sizing: border-box;
}

.hl-signup-form__input::placeholder {
	color: var(--hl-text-light);
}

.hl-signup-form__input:focus {
	border-color: var(--hl-gold);
}

.hl-signup-form__submit {
	width: 100%;
	padding: 14px 24px;
}

.hl-signup-form__disclaimer {
	font-size: 12px;
	color: var(--hl-text-light);
	margin: 4px 0 0;
}

@media (max-width: 768px) {
	.hl-signup-form__panel {
		grid-template-columns: 1fr;
	}

	.hl-signup-form__pitch {
		padding: 32px 28px 24px;
	}

	.hl-signup-form__title {
		font-size: 22px;
		margin-bottom: 16px;
	}

	.hl-signup-form__benefits {
		margin-bottom: 16px;
	}

	.hl-signup-form__form-wrap {
		padding: 28px;
	}
}

/* =========================================================================
 * Signup / Newsletter Modal — matches Booking Modal design
 * ========================================================================= */

.hl-signup-modal {
	position: fixed;
	inset: 0;
	z-index: 10001;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.3s, visibility 0.3s;
	font-family: 'Quicksand', sans-serif;
	-webkit-font-smoothing: antialiased;

	/* Modal sits outside .hl-listing — define vars locally */
	--hl-font: 'Quicksand', sans-serif;
	--hl-font-heading: 'Quicksand', sans-serif;
	--hl-primary: #2c2c2c;
	--hl-text: #3a3a3a;
	--hl-text-light: #8a8a8a;
	--hl-gold: #b8956a;
	--hl-cta: #059669;
	--hl-bg: #ffffff;
	--hl-bg-alt: #faf8f5;
	--hl-border: #e8e4df;
}

.hl-signup-modal--active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.hl-signup-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.hl-signup-modal__dialog {
	position: relative;
	width: 100%;
	max-width: 1020px;
	max-height: calc(100vh - 48px);
	margin: 24px;
	background: var(--hl-bg);
	box-shadow: 0 16px 64px rgba(0, 0, 0, 0.12);
	overflow: visible;
}

.hl-signup-modal__close {
	position: absolute;
	top: 16px;
	right: 16px;
	z-index: 2;
	width: 40px;
	height: 40px;
	background: transparent;
	border: none;
	color: var(--hl-text-light);
	font-size: 24px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: color 0.2s;
}

.hl-signup-modal__close:hover {
	color: var(--hl-primary);
}

.hl-signup-modal__panel {
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.hl-signup-modal__pitch {
	background: var(--hl-bg-alt);
	padding: 56px 48px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.hl-signup-modal__eyebrow {
	display: block;
	font-size: 12px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--hl-gold);
	margin-bottom: 16px;
}

.hl-signup-modal__title {
	font-family: var(--hl-font-heading);
	font-size: 28px;
	font-weight: 300;
	color: var(--hl-primary);
	margin: 0 0 32px;
	line-height: 1.3;
	letter-spacing: 0.01em;
}

.hl-signup-modal__benefits {
	list-style: none;
	padding: 0;
	margin: 0 0 32px;
}

.hl-signup-modal__benefits li {
	position: relative;
	padding-left: 24px;
	padding-bottom: 14px;
	font-size: 15px;
	color: var(--hl-text);
	line-height: 1.5;
}

.hl-signup-modal__benefits li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 6px;
	width: 12px;
	height: 6px;
	border-left: 1.5px solid var(--hl-gold);
	border-bottom: 1.5px solid var(--hl-gold);
	transform: rotate(-45deg);
}

.hl-signup-modal__note {
	margin: 0;
	font-size: 13px;
	color: var(--hl-text-light);
	font-style: italic;
	line-height: 1.6;
}

.hl-signup-modal__form-wrap {
	background: var(--hl-bg);
	padding: 56px 48px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.hl-signup-modal__form-heading {
	font-family: var(--hl-font-heading);
	font-size: 20px;
	font-weight: 500;
	color: var(--hl-primary);
	margin: 0 0 8px;
	line-height: 1.3;
}

.hl-signup-modal__form-subtext {
	font-size: 14px;
	color: var(--hl-text-light);
	margin: 0 0 24px;
	line-height: 1.5;
}

.hl-signup-modal__form {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.hl-signup-modal__input {
	width: 100%;
	padding: 14px 16px;
	border: 1px solid var(--hl-border);
	background: var(--hl-bg);
	color: var(--hl-text);
	font-size: 15px;
	font-family: var(--hl-font);
	outline: none;
	transition: border-color 0.2s;
	box-sizing: border-box;
}

.hl-signup-modal__input:focus {
	border-color: var(--hl-gold);
}

.hl-signup-modal__submit {
	width: 100%;
	padding: 14px 24px;
}

.hl-signup-modal__disclaimer {
	font-size: 12px;
	color: var(--hl-text-light);
	margin: 4px 0 0;
}

.hl-signup-success {
	font-size: 15px;
	color: var(--hl-text, #3a3a3a);
	line-height: 1.6;
	margin: 0;
	padding: 16px 0;
}

@media (max-width: 900px) {
	.hl-signup-modal {
		align-items: flex-end;
	}

	.hl-signup-modal__dialog {
		max-width: 100%;
		max-height: 85vh;
		overflow-y: auto;
		margin: 0;
	}

	.hl-signup-modal__panel {
		grid-template-columns: 1fr;
	}

	.hl-signup-modal__pitch {
		padding: 24px 24px 16px;
	}

	.hl-signup-modal__eyebrow {
		margin-bottom: 8px;
	}

	.hl-signup-modal__title {
		font-size: 20px;
		margin-bottom: 12px;
	}

	.hl-signup-modal__benefits {
		margin-bottom: 0;
	}

	.hl-signup-modal__benefits li {
		font-size: 14px;
		padding-bottom: 8px;
	}

	.hl-signup-modal__note {
		font-size: 12px;
	}

	.hl-signup-modal__form-wrap {
		padding: 20px 24px 24px;
	}

	.hl-signup-modal__form-heading {
		font-size: 17px;
	}

	.hl-signup-modal__form-subtext {
		font-size: 13px;
		margin-bottom: 16px;
	}

	.hl-signup-modal__input {
		padding: 12px 14px;
		font-size: 14px;
	}

	.hl-signup-modal__submit {
		padding: 12px 20px;
	}
}
