* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	background: #faf9f7;
	color: #1a1a1a;
	font-family: "Inter", sans-serif;
}

a {
	color: inherit;
	text-decoration: none;
}

/* HERO */

.hero {
	position: relative;
	width: 100%;
	height: 100vh;
	overflow: hidden;
}

.hero video,
.hero-image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(0.45);
	transition: 1.2s ease;
}

.hero .logo img {
	height: 120px;
}

.overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to bottom,
		rgba(0, 0, 0, 0.15),
		rgba(0, 0, 0, 0.75)
	);
	z-index: 1;
}

/* TOPBAR */

.topbar {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 5;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding: 28px 32px;
}

.contact {
	font-size: 14px;
	line-height: 1.3;
	letter-spacing: 0.5px;
	color: wheat;
}

.contact strong {
	display: block;
	font-size: 22px;
	font-weight: 600;
}

.contact span {
	font-size: 11px;
	opacity: 0.7;
	letter-spacing: 2px;
}

.lang {
	display: flex;
	gap: 8px;
	align-items: center;
	font-size: 12px;
	letter-spacing: 1px;
}

.lang .active {
	background: white;
	color: black;
	padding: 5px 8px;
	border-radius: 4px;
	font-weight: 600;
}

.lang .inactive {
	opacity: 0.5;
	color: white;
}

/* CENTER */

.center-content {
	position: relative;
	z-index: 3;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 20px;
	color: #ede9e3;
}

.subtitle {
	font-size: 7px;
	letter-spacing: 5px;
	margin-bottom: 5px;
	opacity: 1;
}

.logo {
	font-family: "Cormorant Garamond", serif;
	font-size: 6vw;
	font-weight: 500;
	letter-spacing: 2px;
	line-height: 0.9;
	margin-bottom: 10px;
	color: #ede9e3;
}

.logo span {
	font-style: italic;
}

.group {
	letter-spacing: 5px;
	font-size: 12px;
	opacity: 0.8;
	margin-bottom: 30px;
}

/* BOOKING */

.booking-box {
	width: min(1000px, 90%);
	background: white;
	border-radius: 20px;
	padding: 18px;
	display: grid;
	grid-template-columns: 2fr 2fr 1fr auto;
	gap: 14px;
	align-items: end;
	box-shadow: 0 10px 50px rgba(0, 0, 0, 0.35);
}

.field {
	text-align: left;
}

.field label {
	display: block;
	color: #888;
	font-size: 10px;
	margin-bottom: 8px;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.field input,
.field select {
	width: 100%;
	border: none;
	background: #f5f5f5;
	padding: 16px;
	border-radius: 10px;
	font-size: 14px;
	outline: none;
}

.search-btn {
	height: 52px;
	padding: 0 28px;
	border: none;
	background: black;
	color: white;
	border-radius: 12px;
	cursor: pointer;
	font-weight: 600;
	transition: 0.3s;
}

.search-btn:hover {
	transform: translateY(-2px);
}

/* Global hide utility — toggled by JS on scroll */

.mobile-hide {
	display: none !important;
}

/* PROPERTY NAV */

.property-nav {
	position: absolute;
	right: 28px;
	bottom: 50px;
	z-index: 5;
	display: flex;
	flex-direction: column;
	gap: 12px;
	color: #ede9e3;
}

.property-thumb {
	width: 120px;
	height: 90px;
	border-radius: 14px;
	overflow: hidden;
	position: relative;
	cursor: pointer;
	border: 2px solid transparent;
	transition: 0.4s ease;
}

.property-thumb.active {
	border-color: white;
	transform: translateX(-6px);
}

.property-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(0.7);
}

.property-thumb span {
	position: absolute;
	bottom: 10px;
	left: 12px;
	font-size: 11px;
	letter-spacing: 2px;
	font-weight: 600;
}

/* SCROLL */

.scroll {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 25px;
	z-index: 5;
	text-align: center;
	font-size: 11px;
	letter-spacing: 4px;
	opacity: 0.55;
	color: #ede9e3;
}

.mouse {
	width: 22px;
	height: 38px;
	border: 1px solid rgba(255, 255, 255, 0.4);
	border-radius: 20px;
	margin: 0 auto 10px;
	position: relative;
}

.mouse::before {
	content: "";
	width: 4px;
	height: 8px;
	background: white;
	position: absolute;
	left: 50%;
	top: 8px;
	transform: translateX(-50%);
	border-radius: 10px;
	animation: scroll 2s infinite;
}

@keyframes scroll {
	0% {
		opacity: 0;
		transform: translate(-50%, 0);
	}
	50% {
		opacity: 1;
	}
	100% {
		opacity: 0;
		transform: translate(-50%, 12px);
	}
}

@media (max-width: 900px) {
	body {
		overflow: auto;
	}

	.logo {
		font-size: 18vw;
	}

	.group {
		font-size: 12px;
	}

	.topbar {
		padding: 20px;
	}

	.contact strong {
		font-size: 16px;
	}

	.contact span {
		font-size: 9px;
	}
}

/* PROPERTY NAV — tablet (769px–1200px): row layout at bottom center */

@media (min-width: 769px) and (max-width: 1200px) {
	.property-nav {
		flex-direction: row;
		right: auto;
		left: 50%;
		transform: translateX(-50%);
		bottom: 50px;
		top: auto;
	}

	.property-thumb {
		width: 100px;
		height: 76px;
	}
}

/* UPDATE EXISTING .booking-box */

.booking-box {
	width: min(650px, 90%);
	background: white;
	border-radius: 20px;
	padding: 18px;
	display: grid;
	grid-template-columns: 2fr 2fr 1fr auto;
	gap: 14px;
	align-items: end;
	box-shadow: 0 10px 50px rgba(0, 0, 0, 0.35);
	overflow: visible;
	transition: all 0.6s ease;
}

/* PROPERTY RESULT */

.property-results {
	grid-column: 1/-1;
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	transition: all 0.7s ease;
}

/* ACTIVE STATE */

.booking-box.active .property-results {
	max-height: 700px;
	opacity: 1;
	margin-top: 10px;
}

/* FILTER */

.property-filter {
	display: flex;
	gap: 10px;
	margin-bottom: 18px;
	flex-wrap: wrap;
}

.filter-btn {
	border: none;
	background: #efefef;
	padding: 10px 14px;
	border-radius: 999px;
	font-size: 12px;
	cursor: pointer;
	transition: 0.3s;
}

.filter-btn.active {
	background: black;
	color: white;
}

/* PROPERTY LIST */

.property-list {
	display: flex;
	gap: 16px;
	overflow-x: auto;
	padding-bottom: 4px;
}

.property-list::-webkit-scrollbar {
	display: none;
}

/* CARD */

.property-item {
	min-width: 240px;
	border-radius: 16px;
	overflow: hidden;
	position: relative;
	cursor: pointer;
	transition: 0.5s ease;
	background: #f8f8f8;
}

.property-item:hover {
	transform: translateY(-5px);
}

.property-item img {
	width: 100%;
	height: 300px;
	object-fit: cover;
	transition: 1s ease;
}

.property-item:hover img {
	transform: scale(1.05);
}

.property-content {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 18px;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0));
	color: white;
}

.property-content h4 {
	font-size: 14px;
	margin-bottom: 5px;
}

.property-content p {
	font-size: 12px;
	opacity: 0.8;
}
/* ========================================= */
/* FEATURED PROPERTY SECTION */
/* ========================================= */

.featured-property-section {
	width: 100%;
	height: 100vh;
	overflow: hidden;
	background: #fafaf8;
	border-top: 1px solid rgba(0, 0, 0, 0.07);
	padding-left: 50px;
	padding-right: 50px;
}

.featured-grid {
	display: grid;
	grid-template-columns: 1fr 1.4fr 0.9fr;
	height: 100%;
}

/* COLUMNS */

.featured-left,
.featured-center,
.featured-right {
	padding: 80px 42px;
	position: relative;
}

.featured-left {
	border-right: 1px solid rgba(0, 0, 0, 0.08);
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.featured-center {
	border-right: 1px solid rgba(0, 0, 0, 0.08);
	display: flex;
	align-items: center;
	justify-content: center;
}

.featured-right {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

/* LEFT */

.property-count {
	font-size: 12px;
	letter-spacing: 3px;
	color: rgba(0, 0, 0, 0.4);
	margin-bottom: 10px;
}

.property-category {
	font-size: 11px;
	letter-spacing: 4px;
	color: rgba(0, 0, 0, 0.4);
	margin-bottom: 25px;
}

.featured-title {
	font-family: "Cormorant Garamond", serif;
	font-size: 3vw;
	line-height: 1.05;
	font-weight: 400;
	margin-bottom: 30px;
	max-width: 500px;
}

.featured-description {
	color: rgba(0, 0, 0, 0.5);
	line-height: 1.9;
	max-width: 500px;
	font-size: 12px;
	margin-bottom: 20px;
}

/* TAGS */

.property-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 20px;
}

.property-tags span {
	border: 1px solid rgba(0, 0, 0, 0.12);
	padding: 12px 16px;
	border-radius: 999px;
	font-size: 11px;
	letter-spacing: 2px;
	color: rgba(0, 0, 0, 0.6);
}

/* NAVIGATION */

.property-navigation {
	display: flex;
	align-items: center;
	gap: 20px;
}

.nav-btn {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: transparent;
	border: 1px solid rgba(0, 0, 0, 0.12);
	color: #111;
	cursor: pointer;
	transition: 0.4s;
}

.nav-btn:hover {
	background: #111;
	color: white;
}

.pagination {
	letter-spacing: 8px;
	font-size: 10px;
	opacity: 0.4;
}

/* CENTER */

.featured-image-wrapper {
	width: 100%;
	max-width: 580px;
	height: 500px;
	border-radius: 28px;
	overflow: hidden;
	position: relative;
}

.featured-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 1.2s ease;
}

.featured-image-wrapper:hover .featured-image {
	transform: scale(1.04);
}

.image-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to top,
		rgba(0, 0, 0, 0.9),
		rgba(0, 0, 0, 0.05)
	);
}

.image-caption {
	position: absolute;
	left: 30px;
	bottom: 30px;
	z-index: 2;
}

.image-caption h4 {
	font-family: "Cormorant Garamond", serif;
	font-size: 34px;
	margin-bottom: 8px;
	color: #ede9e3;
}

.image-caption p {
	font-size: 11px;
	letter-spacing: 4px;
	opacity: 0.65;
}

/* RIGHT */

.property-meta {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.meta-label {
	display: block;
	margin-bottom: 6px;
	font-size: 11px;
	letter-spacing: 4px;
	color: rgba(0, 0, 0, 0.4);
}

.meta-group h4 {
	font-family: "Cormorant Garamond", serif;
	font-size: 38px;
	font-weight: 400;
	margin-bottom: 10px;
}

.meta-group small {
	color: rgba(0, 0, 0, 0.4);
	letter-spacing: 2px;
}

.divider {
	width: 100%;
	height: 1px;
	background: rgba(0, 0, 0, 0.1);
	margin: 24px 0;
}

/* BUTTON */

.book-btn {
	width: 100%;
	height: 72px;
	border: none;
	background: #111;
	color: white;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 30px;
	font-weight: 600;
	letter-spacing: 2px;
	cursor: pointer;
	transition: 0.4s;
}

.book-btn:hover {
	transform: translateY(-4px);
}

.book-btn span {
	font-size: 24px;
}

/* RESPONSIVE */

@media (max-width: 1200px) {
	.featured-property-section {
		height: auto;
		overflow: hidden;
	}

	.featured-grid {
		grid-template-columns: 1fr;
		height: auto;
	}

	.featured-left,
	.featured-center,
	.featured-right {
		border-right: none;
		border-bottom: 1px solid rgba(0, 0, 0, 0.08);
		padding: 28px 38px;
		margin-top: 20px;
	}

	.featured-left {
		height: auto;
	}

	.featured-right {
		height: auto;
	}

	.featured-image-wrapper {
		height: 460px;
	}

	/* Tighten internal element spacing */
	.property-count {
		margin-bottom: 6px;
	}

	.property-category {
		margin-bottom: 10px;
	}

	.featured-title {
		font-size: 44px;
		margin-bottom: 12px;
	}

	.featured-description {
		margin-top: 12px;
		margin-bottom: 24px;
		display: -webkit-box;
		-webkit-line-clamp: unset;
		line-clamp: unset;
		-webkit-box-orient: unset;
		overflow: visible;
	}

	.property-tags {
		gap: 8px;
		margin-bottom: 24px;
	}

	.property-tags span {
		padding: 14px 16px;
	}

	.property-meta {
		gap: 18px;
	}

	.meta-label {
		margin-bottom: 6px;
	}

	.meta-group h4 {
		font-size: 28px;
		margin-bottom: 4px;
	}

	.divider {
		margin: 14px 0;
	}

	.book-btn {
		height: 58px;
	}
}

@media (max-width: 768px) {
	.featured-left,
	.featured-center,
	.featured-right {
		padding: 36px 24px;
		margin-top: 18px;
	}

	.featured-left {
		height: auto;
	}

	.featured-right {
		height: auto;
	}

	.featured-title {
		font-size: 48px;
		margin-top: 10px;
	}

	.featured-image-wrapper {
		height: 520px;
		border-radius: 22px;
	}

	.image-caption h4 {
		font-size: 26px;
	}

	.meta-group h4 {
		font-size: 28px;
	}
}

/* ========================================= */
/* REVIEWS SECTION */
/* ========================================= */

.reviews-section {
	position: relative;
	padding: 140px 0;
	background:
		radial-gradient(
			circle at top left,
			rgba(210, 205, 195, 0.5),
			transparent 40%
		),
		#f5f3f0;
	overflow: hidden;
}

.reviews-container {
	width: min(1400px, 75%);
	margin: auto;
}

/* HEADER */

.reviews-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 70px;
}

.reviews-label {
	display: block;
	font-size: 11px;
	letter-spacing: 4px;
	color: rgba(0, 0, 0, 0.4);
	margin-bottom: 20px;
}

.reviews-title {
	font-family: "Cormorant Garamond", serif;
	font-size: 3vw;
	font-weight: 400;
	line-height: 1;
}

/* NAVIGATION */

.reviews-navigation {
	display: flex;
	align-items: center;
	gap: 18px;
}

.review-nav {
	width: 58px;
	height: 58px;
	border-radius: 50%;
	border: 1px solid rgba(0, 0, 0, 0.1);
	background: rgba(0, 0, 0, 0.03);
	color: #111;
	cursor: pointer;
	transition: 0.4s;
}

.review-nav:hover {
	background: #111;
	color: white;
}

.review-count {
	color: rgba(0, 0, 0, 0.45);
	letter-spacing: 2px;
	font-size: 13px;
}

/* SLIDER */

.reviews-slider-wrapper {
	overflow: hidden;
}

.reviews-slider {
	display: flex;
	gap: 30px;
	transition: transform 0.7s ease;
	will-change: transform;
}

.review-card {
	flex: 0 0 calc((100% - 60px) / 3);
	background: #f7f7f7;
	color: #111;
	border-radius: 24px;
	padding: 28px;
	min-width: unset;
}

/* TOP */

.review-top {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 22px;
}

.review-user {
	display: flex;
	gap: 14px;
}

.avatar {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: #d8b5b5;
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
}

.avatar.blue {
	background: #9bbde8;
}

.avatar.green {
	background: #87c989;
}

.review-user h4 {
	font-size: 20px;
	margin-bottom: 4px;
}

.review-user span {
	color: #4b9fff;
	font-size: 13px;
}

.google-icon {
	width: 24px;
	height: 24px;
}

/* CONTENT */

.stars {
	color: #ffb400;
	margin-bottom: 14px;
	letter-spacing: 3px;
}

.review-place {
	font-size: 12px;
	letter-spacing: 3px;
	color: #aaa;
	margin-bottom: 24px;
}

.review-text {
	line-height: 1.9;
	color: #444;
	font-size: 10px;
	min-height: 60px;
}

/* FOOTER */

.review-footer {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-top: 30px;
}

.review-footer span {
	color: #aaa;
	font-size: 13px;
}

.review-images {
	display: flex;
	gap: 8px;
}

.review-images img {
	width: 56px;
	height: 56px;
	border-radius: 10px;
	object-fit: cover;
}

/* DOTS */

.review-dots {
	display: flex;
	justify-content: center;
	gap: 12px;
	margin-top: 45px;
}

.dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.18);
	transition: 0.3s;
}

.dot.active {
	width: 34px;
	border-radius: 999px;
	background: #111;
}

.reviews-cta {
	display: flex;
	justify-content: center;
	margin-top: 36px;
}

.reviews-cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: "Inter", sans-serif;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(0, 0, 0, 0.45);
	text-decoration: none;
	border: 1px solid rgba(0, 0, 0, 0.14);
	border-radius: 999px;
	padding: 10px 22px;
	transition:
		color 0.3s ease,
		border-color 0.3s ease,
		background 0.3s ease;
}

.reviews-cta-btn:hover {
	color: #111;
	border-color: rgba(0, 0, 0, 0.35);
	background: rgba(0, 0, 0, 0.03);
}

.reviews-cta-btn svg {
	opacity: 0.5;
	transition:
		opacity 0.3s ease,
		transform 0.3s ease;
}

.reviews-cta-btn:hover svg {
	opacity: 1;
	transform: translateX(2px);
}

/* RESPONSIVE */

@media (max-width: 1200px) {
	.review-card {
		flex: 0 0 calc((100% - 30px) / 2);
	}
}

/* MOBILE */

@media (max-width: 768px) {
	.review-card {
		flex: 0 0 100%;
	}
}

/* ========================================= */
/* STICKY HEADER */
/* ========================================= */

.sticky-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 78px;
	z-index: 9999;

	backdrop-filter: blur(20px);

	background: linear-gradient(
		to bottom,
		rgba(255, 255, 255, 0.92),
		rgba(255, 255, 255, 0.75)
	);

	border-bottom: 1px solid rgba(0, 0, 0, 0.08);

	transition:
		transform 0.5s ease,
		background 0.5s ease;
}

/* HIDE ON INITIAL HERO */

.sticky-header.hidden {
	transform: translateY(-100%);
}

/* INNER */

.header-inner {
	width: 100%;
	height: 100%;

	padding: 0 34px;

	display: flex;
	align-items: center;
	justify-content: space-between;
}

/* LOGO */

.header-logo h2 {
	font-family: "Cormorant Garamond", serif;

	font-size: 34px;

	letter-spacing: 3px;

	font-weight: 500;

	line-height: 1;
}

.header-logo span {
	display: block;

	margin-top: 4px;

	font-size: 10px;

	letter-spacing: 4px;

	color: rgba(0, 0, 0, 0.45);
}

.header-logo img {
	height: 40px;
}

/* NAVIGATION */

.header-nav {
	display: flex;
	align-items: center;
	gap: 46px;
}

.header-nav a {
	position: relative;

	font-size: 13px;

	letter-spacing: 2px;

	color: rgba(0, 0, 0, 0.65);

	transition: 0.3s;
}

.header-nav a::after {
	content: "";

	position: absolute;

	left: 0;
	bottom: -8px;

	width: 0;
	height: 1px;

	background: #111;

	transition: 0.4s;
}

.header-nav a:hover {
	color: #000;
}

.header-nav a:hover::after {
	width: 100%;
}

/* LANGUAGE */

.header-language {
	display: flex;
	align-items: center;
	gap: 12px;

	font-size: 12px;

	letter-spacing: 2px;
}

.header-language span {
	opacity: 0.4;
	cursor: pointer;
}

.header-language .active {
	opacity: 1;

	background: #111;

	color: white;

	padding: 8px 10px;

	border-radius: 6px;

	font-weight: 600;
}

/* SCROLL EFFECT */

.sticky-header.scrolled {
	background: rgba(255, 255, 255, 0.96);

	border-bottom: 1px solid rgba(0, 0, 0, 0.1);

	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

/* BURGER BUTTON */

.burger-btn {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
}

.burger-btn span {
	display: block;
	width: 24px;
	height: 2px;
	background: #111;
	border-radius: 2px;
	transition:
		transform 0.3s ease,
		opacity 0.3s ease;
}

.burger-btn.active span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.burger-btn.active span:nth-child(2) {
	opacity: 0;
}

.burger-btn.active span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* MOBILE MENU */

.mobile-menu {
	position: fixed;
	top: 0;
	right: -100%;
	width: min(340px, 85%);
	height: 100vh;
	background: white;
	z-index: 99998;
	padding: 30px 32px 40px;
	display: flex;
	flex-direction: column;
	gap: 40px;
	transition: right 0.4s cubic-bezier(0.22, 1, 0.36, 1);
	box-shadow: -20px 0 60px rgba(0, 0, 0, 0.12);
	overflow-y: auto;
}

.mobile-menu.active {
	right: 0;
}

.mobile-menu-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
	backdrop-filter: blur(4px);
	z-index: 99997;
	opacity: 0;
	visibility: hidden;
	transition:
		opacity 0.4s ease,
		visibility 0.4s ease;
}

.mobile-menu-overlay.active {
	opacity: 1;
	visibility: visible;
}

.mobile-menu-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.mobile-menu-logo {
	height: 32px;
}

.mobile-menu-close {
	background: none;
	border: none;
	font-size: 20px;
	cursor: pointer;
	color: #111;
	padding: 8px;
	line-height: 1;
}

.mobile-menu-nav {
	display: flex;
	flex-direction: column;
	gap: 0;
	flex: 1;
}

.mobile-menu-nav a {
	display: block;
	padding: 22px 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.07);
	font-size: 22px;
	font-family: "Cormorant Garamond", serif;
	color: #111;
	letter-spacing: 1px;
	transition: 0.3s;
}

.mobile-menu-nav a:first-child {
	border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.mobile-menu-nav a:hover {
	color: #888;
	padding-left: 8px;
}

.mobile-menu-lang {
	display: flex;
	gap: 12px;
	align-items: center;
	font-size: 13px;
	letter-spacing: 2px;
}

.mobile-menu-lang span {
	opacity: 0.4;
	cursor: pointer;
}

.mobile-menu-lang span.active {
	opacity: 1;
	background: #111;
	color: white;
	padding: 8px 10px;
	border-radius: 6px;
	font-weight: 600;
}

/* RESPONSIVE */

@media (max-width: 992px) {
	.header-nav {
		display: none;
	}

	.header-language {
		display: none;
	}

	.burger-btn {
		display: flex;
	}
}

@media (max-width: 768px) {
	.sticky-header {
		height: 72px;
	}

	.header-inner {
		padding: 0 20px;
	}

	.header-logo h2 {
		font-size: 26px;
	}

	.header-logo span {
		font-size: 8px;
		letter-spacing: 3px;
	}
}

/* ========================================= */
/* LUXURY FOOTER */
/* ========================================= */

.luxury-footer {
	position: relative;

	width: 100%;

	padding: 120px 20px 90px;

	background:
		radial-gradient(
			circle at top,
			rgba(200, 195, 182, 0.3),
			transparent 45%
		),
		#ede9e3;

	border-top: 1px solid rgba(0, 0, 0, 0.08);

	overflow: hidden;
}

/* SUBTLE TOP LINE */

.luxury-footer::before {
	content: "";

	position: absolute;

	top: 0;
	left: 0;

	width: 100%;
	height: 1px;

	background: linear-gradient(
		to right,
		transparent,
		rgba(0, 0, 0, 0.1),
		transparent
	);
}

/* CONTENT */

.footer-content {
	width: 100%;

	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;

	text-align: center;
}

/* LOGO */

.footer-logo {
	font-family: "Cormorant Garamond", serif;

	font-size: 34px;

	font-weight: 400;

	letter-spacing: 8px;

	color: rgba(60, 48, 28, 0.7);

	margin-bottom: 18px;
}

/* COPYRIGHT */

.footer-copyright {
	font-size: 14px;

	color: rgba(0, 0, 0, 0.4);

	margin-bottom: 35px;

	letter-spacing: 1px;
}

/* LINK */

.footer-link {
	position: relative;

	color: rgba(0, 0, 0, 0.45);

	font-size: 15px;

	transition: 0.4s ease;
}

.footer-link::after {
	content: "";

	position: absolute;

	left: 0;
	bottom: -6px;

	width: 0;
	height: 1px;

	background: #111;

	transition: 0.4s ease;
}

.footer-link:hover {
	color: #111;
}

.footer-link:hover::after {
	width: 100%;
}

/* RESPONSIVE */

@media (max-width: 768px) {
	.luxury-footer {
		padding: 90px 20px 70px;
	}

	.footer-logo {
		font-size: 24px;
		letter-spacing: 5px;
		line-height: 1.4;
	}

	.footer-copyright {
		font-size: 12px;
	}
}

/* ========================================= */
/* DESTINATION SECTION */
/* ========================================= */

.destination-section {
	position: relative;
	width: 100%;
	min-height: 100vh;
	overflow: hidden;
	padding: 120px 0;
	background: black;
}

/* VIDEO */

.destination-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
	filter: brightness(0.45);
}

.destination-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to bottom,
		rgba(0, 0, 0, 0.55),
		rgba(0, 0, 0, 0.82)
	);
	z-index: 2;
}

/* CONTAINER */

.destination-container {
	position: relative;
	z-index: 3;
	width: min(1500px, 92%);
	margin: auto;
}

/* TOP */

.destination-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 240px;
}

.destination-heading {
	font-size: 3vw;
	font-weight: 700;
	color: #f4e8e3;
}

/* FILTER */

.destination-filter {
	display: flex;
	gap: 40px;
}

.destination-filter-btn {
	background: none;
	border: none;
	color: white;
	font-size: 20px;
	cursor: pointer;
	opacity: 0.5;
	transition: 0.4s;
	text-transform: lowercase;
}

.destination-filter-btn.active {
	opacity: 1;
}

/* CONTENT */

.destination-content {
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: 80px;
	align-items: center;
}

/* LEFT */

.destination-subtitle {
	display: block;
	font-size: 14px;
	letter-spacing: 3px;
	opacity: 0.7;
	color: #ede9e3;
}

.destination-title {
	font-size: 4vw;
	line-height: 0.9;
	font-weight: 800;
	margin-bottom: 30px;
	color: #ede9e3;
}

.destination-description {
	max-width: 520px;
	line-height: 1.9;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.75);
	margin-bottom: 40px;
}

.destination-button {
	width: 220px;
	height: 70px;
	border: none;
	background: #0c2430;
	color: white;
	border-radius: 14px;
	font-size: 20px;
	font-weight: 600;
	cursor: pointer;
	transition: 0.4s;
}

.destination-button:hover {
	transform: translateY(-4px);
}

/* RIGHT */

.destination-right {
	position: relative;
}

/* NAV */

.destination-navigation {
	display: flex;
	gap: 16px;
	margin-bottom: 30px;
}

.destination-nav {
	width: 54px;
	height: 54px;
	border-radius: 50%;
	border: none;
	background: rgba(255, 255, 255, 0.18);
	color: white;
	cursor: pointer;
	transition: 0.4s;
}

.destination-nav:hover {
	background: white;
	color: black;
}

/* SLIDER */

.destination-slider-wrapper {
	overflow: hidden;
}

.destination-slider {
	display: flex;
	gap: 28px;
	transition: transform 0.7s ease;
}

/* CARD */

.destination-card {
	position: relative;
	width: 200px;
	height: 300px;
	border-radius: 28px;
	overflow: hidden;
	flex-shrink: 0;
	cursor: pointer;
	transition: 0.6s ease;
}

.destination-card.active {
	transform: translateY(-20px);
}

.destination-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.destination-card::after {
	content: "";

	position: absolute;
	inset: 0;

	background: linear-gradient(
		to top,
		rgba(0, 0, 0, 0.75),
		rgba(0, 0, 0, 0.05)
	);
}

.destination-card span {
	position: absolute;
	left: 24px;
	bottom: 24px;
	z-index: 2;
	font-size: 25px;
	font-weight: 700;
	color: #ede9e3;
}

/* RESPONSIVE */

@media (max-width: 1200px) {
	.destination-content {
		grid-template-columns: 1fr;
	}

	.destination-heading {
		font-size: 70px;
	}

	.destination-title {
		font-size: 90px;
	}
}

@media (max-width: 768px) {
	.destination-section {
		padding: 30px 0;
	}

	.destination-top {
		flex-direction: column;
		align-items: flex-start;
		gap: 30px;
		margin-top: 30px;
	}

	.destination-filter {
		gap: 20px;
		flex-wrap: wrap;
	}

	.destination-heading {
		font-size: 30px;
	}

	.destination-title {
		font-size: 35px;
	}

	.destination-card {
		width: 130px;
		height: 200px;
	}

	.destination-card span {
		font-size: 18px;
	}

	.destination-filter-btn {
		font-size: 15px;
	}
	.destination-top {
		margin-bottom: 60px;
	}
	.destination-slider {
		gap: 15px;
	}
}

/* ========================================= */
/* PROPERTY MAP SECTION */
/* ========================================= */

.property-map-section {
	position: relative;
	padding: 140px 0;
	background: #f5f5f3;
	overflow: hidden;
}

.map-container {
	width: min(1500px, 92%);
	margin: auto;
}

/* HEADER */

.map-header {
	text-align: center;
	margin-bottom: 60px;
}

.map-label {
	display: block;
	font-size: 12px;
	letter-spacing: 4px;
	color: #999;
	margin-bottom: 20px;
}

.map-title {
	font-size: 5vw;
	line-height: 1;
	font-weight: 700;
	margin-bottom: 25px;
	color: #333;
}

.map-description {
	max-width: 760px;
	margin: auto;
	line-height: 1.8;
	color: #666;
	font-size: 18px;
}

/* FILTER */

.map-filter {
	width: min(950px, 100%);
	margin: 0 auto 70px;

	background: white;

	border-radius: 999px;

	padding: 18px;

	display: grid;

	grid-template-columns:
		1fr
		1fr
		1fr
		80px;

	gap: 14px;

	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.map-filter select {
	border: none;
	background: #f7f7f7;
	border-radius: 14px;
	padding: 18px;
	font-size: 15px;
	outline: none;
}

.map-search-btn {
	border: none;
	border-radius: 50%;
	background: black;
	color: white;
	cursor: pointer;
	font-size: 22px;
}

/* MAP */

.map-wrapper {
	position: relative;
	width: 100%;
	height: 620px;
	border-radius: 40px;
	overflow: hidden;
	background: #c2d8e8;
	z-index: 0;
}

/* Leaflet overrides */
.map-wrapper .leaflet-control-attribution {
	background: rgba(255, 255, 255, 0.82) !important;
	font-size: 9px !important;
	border-radius: 6px 0 0 0;
}

.map-wrapper .leaflet-control-zoom a {
	background: rgba(255, 255, 255, 0.95) !important;
	border-color: rgba(0, 0, 0, 0.12) !important;
	color: #1a1a1a !important;
	font-weight: 600;
}

/* ── CUSTOM MARKERS ── */

.xenia-map-marker {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 5px;
	cursor: pointer;
}

.xenia-marker-circle {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	border: 3px solid #fff;
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.28);
	overflow: hidden;
	transition:
		transform 0.22s ease,
		box-shadow 0.22s ease;
}

.xenia-map-marker:hover .xenia-marker-circle {
	transform: scale(1.12) translateY(-3px);
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.36);
}

.xenia-marker-circle img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.xenia-marker-label {
	font-size: 10px;
	font-weight: 600;
	color: #1a1a1a;
	background: #fff;
	padding: 2px 8px;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
	white-space: nowrap;
	max-width: 110px;
	overflow: hidden;
	text-overflow: ellipsis;
	text-align: center;
	letter-spacing: 0.01em;
}

/* ── ACTIVE PIN PULSE ── */

@keyframes xenia-ping {
	0% {
		transform: scale(1);
		opacity: 0.7;
	}
	80%,
	100% {
		transform: scale(2.4);
		opacity: 0;
	}
}

@keyframes xenia-pulse-ring {
	0%,
	100% {
		box-shadow:
			0 0 0 0 rgba(190, 150, 90, 0.55),
			0 0 0 6px rgba(190, 150, 90, 0.18);
	}
	50% {
		box-shadow:
			0 0 0 8px rgba(190, 150, 90, 0.18),
			0 0 0 16px rgba(190, 150, 90, 0.06);
	}
}

.xenia-marker-circle-wrap {
	position: relative;
	width: 56px;
	height: 56px;
}

.xenia-marker-pulse {
	position: absolute;
	inset: 0;
	border-radius: 50%;
	background: rgba(190, 150, 90, 0.3);
	animation: xenia-ping 2s cubic-bezier(0.22, 0.61, 0.36, 1) infinite;
	pointer-events: none;
	z-index: 0;
}

.xenia-marker-active .xenia-marker-circle {
	position: relative;
	z-index: 1;
	border-color: #be965a;
	animation: xenia-pulse-ring 2.4s ease-in-out infinite;
}

.xenia-marker-active .xenia-marker-circle-wrap > .xenia-marker-circle {
	position: relative;
	z-index: 1;
}

/* ── CUSTOM POPUP ── */

.xenia-leaflet-popup .leaflet-popup-content-wrapper {
	padding: 0;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
	border: none;
}

.xenia-leaflet-popup .leaflet-popup-content {
	margin: 0;
	width: 260px !important;
}

.xenia-leaflet-popup .leaflet-popup-tip-container {
	margin-top: -1px;
}

.xenia-popup img {
	width: 100%;
	height: 148px;
	object-fit: cover;
	display: block;
}

.xenia-popup-body {
	padding: 16px 18px 18px;
}

.xenia-popup-body h4 {
	font-size: 16px;
	font-weight: 600;
	color: #1a1a1a;
	margin-bottom: 4px;
}

.xenia-popup-body p {
	font-size: 12px;
	color: #888;
	margin-bottom: 12px;
}

.xenia-popup-meta {
	display: flex;
	justify-content: space-between;
	font-size: 12px;
	color: #555;
	margin-bottom: 14px;
}

.xenia-popup-meta span:first-child {
	color: #c8a96e;
	font-weight: 600;
}

.xenia-popup-btn {
	width: 100%;
	height: 40px;
	border: none;
	border-radius: 10px;
	background: #1a1a1a;
	color: white;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.06em;
	cursor: pointer;
	transition: background 0.2s;
}

.xenia-popup-btn:hover {
	background: #333;
}

/* POPUP */

/* ========================================= */
/* POPUP HIDDEN DEFAULT */
/* REPLACE EXISTING .property-popup */
/* ========================================= */

/* ========================================= */
/* SMALLER PROPERTY POPUP */
/* REPLACE EXISTING .property-popup */
/* ========================================= */

.property-popup {
	position: absolute;

	width: 260px;

	background: white;

	border-radius: 22px;

	overflow: hidden;

	z-index: 10;

	box-shadow: 0 18px 60px rgba(0, 0, 0, 0.16);

	opacity: 0;

	visibility: hidden;

	transform: translate(-50%, -120%);

	transition:
		opacity 0.35s ease,
		transform 0.35s ease,
		visibility 0.35s ease;

	pointer-events: none;
}

/* ACTIVE */

.property-popup.active {
	opacity: 1;

	visibility: visible;

	transform: translate(-50%, -108%);
}

/* IMAGE */

.property-popup img {
	width: 100%;
	height: 150px;
	object-fit: cover;
}

/* CONTENT */

.popup-content {
	padding: 18px;
}

.popup-content h4 {
	font-size: 18px;
	margin-bottom: 6px;
	line-height: 1.2;
}

.popup-content p {
	font-size: 13px;
	color: #777;
	margin-bottom: 14px;
}

/* META */

.popup-meta {
	display: flex;
	gap: 12px;
	margin-bottom: 14px;
	color: #777;
	font-size: 12px;
}

/* PRICE */

.popup-price {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 14px;
}

.popup-price small {
	font-size: 11px;
	color: #888;
}

/* BUTTON */

.popup-button {
	width: 100%;
	height: 44px;

	border: none;

	border-radius: 12px;

	background: black;

	color: white;

	cursor: pointer;

	font-size: 13px;

	font-weight: 600;

	transition: 0.3s;
}

.popup-button:hover {
	transform: translateY(-2px);
}

/* MAP POINT */

.map-point {
	position: absolute;

	width: 70px;
	height: 70px;

	border-radius: 50%;

	overflow: hidden;

	border: 4px solid white;

	cursor: pointer;

	transition: 0.4s ease;

	z-index: 3;
}

.map-point img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.map-point:hover {
	transform: scale(1.15);
}

.map-point.active {
	transform: scale(1.2);
	box-shadow: 0 0 0 12px rgba(255, 255, 255, 0.18);
}

/* RESPONSIVE */

@media (max-width: 1100px) {
	.map-filter {
		grid-template-columns: 1fr;
		border-radius: 30px;
	}

	.map-search-btn {
		height: 60px;
		border-radius: 16px;
		padding: 0 28px;
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 8px;
	}

	.map-search-btn::before {
		content: "SEARCH";
		font-size: 12px;
		font-weight: 600;
		align-items: center;
		text-align: center;
		letter-spacing: 2px;
		font-family: "Inter", sans-serif;
	}

	.property-popup {
		width: 300px;
	}
}

@media (max-width: 768px) {
	.property-map-section {
		padding: 100px 0;
	}

	.map-title {
		font-size: 35px;
	}

	.map-wrapper {
		height: 480px;
		border-radius: 24px;
	}

	.property-popup {
		width: 90%;
	}
	.map-description {
		font-size: 13px;
	}
}

.overlay {
	position: absolute;
	inset: 0;

	background: linear-gradient(
		to bottom,
		rgba(0, 0, 0, 0.2),
		rgba(0, 0, 0, 0.72)
	);

	z-index: 1;
}

/* ========================================= */
/* MOBILE BOOKING BOX */
/* ========================================= */

@media (max-width: 768px) {
	.booking-box {
		width: 92%;
		grid-template-columns: 1fr;
		gap: 10px;
		padding: 14px;
		border-radius: 20px;
		align-items: stretch;
	}

	/* FIELD */

	.field {
		width: 100%;
	}

	.field label {
		margin-bottom: 8px;
		font-size: 10px;
		letter-spacing: 2px;
	}

	.field input,
	.field select {
		width: 100%;
		height: 46px;
		border-radius: 12px;
		font-size: 13px;
		padding: 0 14px;
	}

	.date-range-display {
		height: 46px;
		border-radius: 12px;
		padding: 0 14px;
	}

	/* SEARCH BUTTON */

	.search-btn {
		width: 100%;
		height: 50px;
		border-radius: 12px;
		margin-top: 2px;
		font-size: 14px;
	}

	/* PROPERTY RESULT */

	.property-results {
		margin-top: 8px;
	}

	/* FILTER */

	.property-filter {
		display: flex;
		flex-wrap: wrap;
		gap: 8px;
		margin-bottom: 18px;
	}

	.filter-btn {
		flex: none;
		font-size: 11px;
		padding: 8px 12px;
	}

	/* PROPERTY LIST */

	.property-list {
		gap: 12px;
	}

	.property-item {
		min-width: 200px;
	}

	.property-item img {
		height: 160px;
	}
}

/* ========================================= */
/* DATE RANGE PICKER */
/* ========================================= */

.date-range-field {
	position: relative;
}

.date-range-display {
	width: 100%;
	height: 48px;

	background: #f5f5f5;

	border-radius: 14px;

	padding: 0 18px;

	display: flex;
	align-items: center;
	justify-content: space-between;

	cursor: pointer;

	transition: 0.3s;
}

.date-range-display:hover {
	background: #efefef;
}

#dateRangeText {
	font-size: 14px;
	color: #111;
}

.calendar-icon {
	font-size: 16px;
	opacity: 0.5;
}

/* FLATPICKR */

.flatpickr-calendar {
	border: none !important;

	border-radius: 24px !important;

	overflow: hidden;

	box-shadow: 0 25px 80px rgba(0, 0, 0, 0.12) !important;

	font-family: "Inter", sans-serif;
}

.flatpickr-day.selected {
	background: black !important;
	border-color: black !important;
}

.flatpickr-day.startRange,
.flatpickr-day.endRange {
	background: black !important;
}
.flatpickr-wrapper {
	position: relative;
	display: inline !important;
}

.flatpickr-calendar {
	width: 200px !important;
}
.flatpickr-rContainer {
	width: 200px !important;
}
.flatpickr-day {
	max-width: 27.99px !important;
}
.flatpickr-calendar {
	font-size: 10px !important;
}
/* ========================================= */
/* FEATURED VIDEO */
/* ========================================= */

.featured-video {
	width: 100%;
	height: 100%;

	object-fit: cover;

	transition:
		opacity 1s ease,
		transform 2.4s cubic-bezier(0.22, 1, 0.36, 1),
		filter 1s ease;
}

.featured-left {
	transition:
		opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.featured-right {
	transition:
		opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.12s,
		transform 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.12s;
}

/* HOVER EFFECT */

.featured-image-wrapper:hover .featured-video {
	transform: scale(1.04);
}

.image-overlay {
	position: absolute;
	inset: 0;

	background: linear-gradient(
		to top,
		rgba(0, 0, 0, 0.78),
		rgba(0, 0, 0, 0.08)
	);

	z-index: 1;
}

@media (max-width: 768px) {
	.group {
		letter-spacing: 3px;
		font-size: 10px;
		opacity: 1;
		margin-bottom: 15px;
	}
	.logo {
		margin-bottom: 0px;
	}
	.hero .logo img {
		height: 44px;
		margin-top: 4px;
		margin-bottom: 12px;
	}
	.subtitle {
		letter-spacing: 2px;
	}
	/* mobile-hide is applied globally via JS — defined here for mobile context */

	/* Booking-box: single column at mobile only */
	.booking-box {
		grid-template-columns: 1fr;
	}

	/* Property nav: small, horizontal, centered vertically in hero */
	.property-nav {
		flex-direction: row;
		right: auto;
		left: 50%;
		transform: translateX(-50%);
		top: auto;
		bottom: 200px;
	}

	.property-thumb {
		width: 92px;
		height: 68px;
	}

	/* Center content: push to top with space for property-nav at bottom */
	.center-content {
		justify-content: flex-start;
		padding-top: 90px;
		padding-bottom: 170px;
	}

	.featured-property-section {
		padding: 0px;
	}
	/* .featured-center {
		padding-top: 24px !important;
	} */
	.featured-right {
		padding-top: 0px !important;
	}

	.property-meta {
		gap: 20px;
	}
	.reviews-header {
		display: flex;
		flex-direction: column;
		gap: 20px;
		margin-bottom: 40px;
	}
	.reviews-section {
		padding: 60px 0;
	}
	.reviews-container {
		width: min(1400px, 90%);
	}
	.reviews-title {
		font-size: 8vw;
	}
	.destination-description {
		max-width: 375px;
		margin-bottom: 10px;
	}
}
@media (max-width: 900px) {
	.logo {
		font-size: 15vw;
	}
}

/* ========================================= */
/* VIDEO MODAL */
/* ========================================= */

.video-modal {
	position: fixed;
	inset: 0;

	width: 100%;
	height: 100vh;

	z-index: 99999;

	background: black;

	opacity: 0;
	visibility: hidden;

	transition:
		opacity 1.2s ease,
		visibility 1.2s ease;
}

/* ACTIVE */

.video-modal.active {
	opacity: 1;
	visibility: visible;
}

/* ========================================= */
/* OVERLAY */
/* ========================================= */

.video-modal-overlay {
	position: absolute;
	inset: 0;

	background: rgba(0, 0, 0, 0.55);

	backdrop-filter: blur(18px);

	opacity: 0;

	transition: opacity 1.6s ease;
}

/* ACTIVE */

.video-modal.active .video-modal-overlay {
	opacity: 1;
}

/* ========================================= */
/* CONTENT */
/* ========================================= */

.video-modal-content {
	position: relative;

	width: 100%;
	height: 100vh;

	overflow: hidden;

	transform: scale(1.12);

	opacity: 0;

	filter: blur(12px);

	transition:
		transform 2s cubic-bezier(0.22, 1, 0.36, 1),
		opacity 1.4s ease,
		filter 1.8s ease;
}

/* ACTIVE */

.video-modal.active .video-modal-content {
	transform: scale(1);

	opacity: 1;

	filter: blur(0);
}

/* ========================================= */
/* VIDEO */
/* ========================================= */

.modal-video {
	width: 100%;
	height: 100%;

	object-fit: cover;

	transform: scale(1.08);

	transition: transform 8s ease;
}

/* ACTIVE */

.video-modal.active .modal-video {
	transform: scale(1);
}

/* ========================================= */
/* CENTER BUTTON */
/* ========================================= */

.video-modal-link {
	position: absolute;

	left: 50%;
	top: 50%;

	transform: translate(-50%, 40px);

	opacity: 0;

	transition:
		opacity 1.4s ease 1s,
		transform 1.4s cubic-bezier(0.22, 1, 0.36, 1) 1s,
		background 0.4s ease;

	z-index: 20;
}

/* ACTIVE */

.video-modal.active .video-modal-link {
	opacity: 1;

	transform: translate(-50%, -50%);
}

/* ========================================= */
/* CLOSE BUTTON */
/* ========================================= */

.video-modal-close {
	opacity: 0;

	transform: rotate(-90deg);

	transition:
		opacity 1s ease 0.8s,
		transform 1s cubic-bezier(0.22, 1, 0.36, 1) 0.8s;
}

/* ACTIVE */

.video-modal.active .video-modal-close {
	opacity: 1;

	transform: rotate(0);
}

/* ========================================= */
/* CLOSE */
/* ========================================= */

.video-modal-close {
	position: absolute;

	top: 40px;
	right: 40px;

	width: 68px;
	height: 68px;

	border: none;

	border-radius: 50%;

	background: rgba(255, 255, 255, 0.08);

	color: white;

	font-size: 20px;

	cursor: pointer;

	z-index: 20;

	backdrop-filter: blur(14px);

	transition: 0.4s ease;
}

.video-modal-close:hover {
	transform: rotate(90deg);

	background: white;
	color: black;
}

/* ========================================= */
/* HIDE DEFAULT CONTROLS */
/* ========================================= */

.modal-video::-webkit-media-controls {
	opacity: 0;
	transition: 0.3s;
}

.video-modal:hover .modal-video::-webkit-media-controls {
	opacity: 1;
}

/* ========================================= */
/* MOBILE */
/* ========================================= */

@media (max-width: 768px) {
	.video-modal-close {
		top: 20px;
		right: 20px;

		width: 54px;
		height: 54px;
	}
}

/* ========================================= */
/* HIDE VIDEO CONTROLS */
/* ========================================= */

.modal-video::-webkit-media-controls {
	display: none !important;
	opacity: 0 !important;
}

.modal-video::-webkit-media-controls-enclosure {
	display: none !important;
}

.modal-video::-webkit-media-controls-panel {
	display: none !important;
}

.modal-video::-webkit-media-controls-play-button {
	display: none !important;
}

.modal-video::-webkit-media-controls-start-playback-button {
	display: none !important;
}

/* FIREFOX */

.modal-video {
	pointer-events: none;
}

/* ========================================= */
/* MODAL CENTER BUTTON */
/* ========================================= */

.video-modal-link {
	position: absolute;

	left: 50%;
	top: 50%;

	transform: translate(-50%, -50%);

	width: 260px;
	height: 74px;

	display: flex;
	align-items: center;
	justify-content: center;

	border-radius: 999px;

	background: #4b3a30;

	border: 1px solid rgba(255, 255, 255, 0.18);

	backdrop-filter: blur(18px);

	color: white;

	text-decoration: none;

	font-size: 13px;

	letter-spacing: 4px;

	z-index: 20;

	overflow: hidden;

	transition:
		transform 0.45s ease,
		background 0.45s ease,
		color 0.45s ease,
		border 0.45s ease;
}

/* GLOW */

.video-modal-link::before {
	content: "";

	position: absolute;

	inset: -40%;

	background: linear-gradient(
		120deg,
		transparent,
		rgba(255, 255, 255, 0.18),
		transparent
	);

	transform: translateX(-120%);

	transition: 1s ease;
}

/* HOVER */

.video-modal-link:hover {
	background: #a66a4e;

	color: black;

	transform: translate(-50%, -50%) scale(1.04);

	border-color: white;
}

.video-modal-link:hover::before {
	transform: translateX(120%);
}

/* ========================================= */
/* MOBILE */
/* ========================================= */

@media (max-width: 768px) {
	.video-modal-link {
		width: 210px;
		height: 62px;

		font-size: 11px;

		letter-spacing: 3px;
	}
}

/* ========================================= */
/* MEMBERSHIP SECTION */
/* ========================================= */

.membership-section {
	position: relative;

	padding: 140px 0;

	background: linear-gradient(to bottom, #f7f5f2, #ece8e1);

	overflow: hidden;
}

/* CONTAINER */

.membership-container {
	width: min(1450px, 92%);
	margin: auto;
}

/* ========================================= */
/* HEADING */
/* ========================================= */

.membership-heading {
	text-align: center;

	margin-bottom: 90px;
}

.membership-label {
	display: block;

	font-size: 13px;

	letter-spacing: 4px;

	color: #9c8454;

	margin-bottom: 24px;
}

.membership-title {
	font-family: "Cormorant Garamond", serif;

	font-size: 78px;

	line-height: 1;

	color: #111;

	font-weight: 500;

	margin-bottom: 28px;
}

.membership-description {
	max-width: 720px;

	margin: auto;

	line-height: 2;

	color: #666;

	font-size: 16px;
}

/* ========================================= */
/* GRID */
/* ========================================= */

.membership-grid {
	display: grid;

	grid-template-columns: repeat(3, 1fr);

	gap: 34px;
}

/* ========================================= */
/* CARD */
/* ========================================= */

.membership-card {
	position: relative;

	padding: 46px 38px;

	border-radius: 32px;

	overflow: hidden;

	min-height: 720px;

	display: flex;
	flex-direction: column;
	justify-content: space-between;

	transition:
		transform 0.5s ease,
		box-shadow 0.5s ease;
}

/* HOVER */

.membership-card:hover {
	transform: translateY(-10px);
}

/* ========================================= */
/* TIERS */
/* ========================================= */

/* BLUE */

.welcome-tier {
	background: linear-gradient(160deg, #0e2d5a, #1b4f95);

	color: white;

	box-shadow: 0 30px 80px rgba(27, 79, 149, 0.18);
}

/* GOLD */

.gold-tier {
	background: linear-gradient(160deg, #b58a3f, #e1c47d);

	color: #1d1d1d;

	box-shadow: 0 30px 80px rgba(181, 138, 63, 0.22);
}

/* PLATINUM */

.platinum-tier {
	background: linear-gradient(160deg, #4d4d4d, #b9bcc2);

	color: white;

	box-shadow: 0 30px 80px rgba(80, 80, 80, 0.18);
}

/* ========================================= */
/* FEATURED */
/* ========================================= */

.featured-tier {
	transform: translateY(-20px);
}

.featured-tier:hover {
	transform: translateY(-30px);
}

/* BADGE */

.featured-badge {
	position: absolute;

	top: 24px;
	right: 24px;

	padding: 10px 18px;

	border-radius: 999px;

	background: rgba(255, 255, 255, 0.2);

	font-size: 11px;

	letter-spacing: 2px;

	font-weight: 600;
}

/* ========================================= */
/* TOP */
/* ========================================= */

.membership-tier {
	display: block;

	font-size: 12px;

	letter-spacing: 3px;

	opacity: 0.7;

	margin-bottom: 22px;
}

.membership-top h3 {
	font-family: "Cormorant Garamond", serif;

	font-size: 58px;

	line-height: 1;

	margin-bottom: 26px;
}

.membership-top p {
	line-height: 1.9;

	font-size: 15px;

	opacity: 0.85;
}

/* ========================================= */
/* BENEFITS */
/* ========================================= */

.membership-benefits {
	margin: 46px 0;
}

.benefit-item {
	padding: 18px 0;

	border-bottom: 1px solid rgba(255, 255, 255, 0.12);

	font-size: 15px;

	letter-spacing: 0.3px;
}

/* GOLD BORDER */

.gold-tier .benefit-item {
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

/* ========================================= */
/* BUTTON */
/* ========================================= */

.membership-button {
	width: 100%;
	height: 62px;

	border: none;

	border-radius: 16px;

	background: rgba(255, 255, 255, 0.14);

	color: inherit;

	font-size: 13px;

	letter-spacing: 3px;

	cursor: pointer;

	backdrop-filter: blur(14px);

	transition: 0.4s ease;
}

/* GOLD */

.gold-tier .membership-button {
	background: rgba(255, 255, 255, 0.4);
}

/* HOVER */

.membership-button:hover {
	background: white;

	color: black;

	transform: translateY(-3px);
}

/* ========================================= */
/* MOBILE */
/* ========================================= */

@media (max-width: 1200px) {
	.membership-grid {
		grid-template-columns: 1fr;
		max-width: 560px;
		margin: 0 auto;
	}

	.featured-tier {
		transform: none;
	}

	.featured-tier:hover {
		transform: translateY(-10px);
	}

	.membership-card {
		min-height: auto;
	}

	.membership-top h3 {
		font-size: 48px;
	}

	.membership-top p {
		font-size: 14px;
	}

	.benefit-item {
		font-size: 14px;
		padding: 14px 0;
		line-height: 1.8;
	}
}

@media (max-width: 768px) {
	.membership-section {
		padding: 80px 0;
	}

	.membership-heading {
		margin-bottom: 56px;
	}

	.membership-title {
		font-size: 40px;
	}

	.membership-description {
		font-size: 14px;
	}

	.membership-grid {
		max-width: 100%;
	}

	.membership-card {
		min-height: auto;
		padding: 36px 24px;
		border-radius: 24px;
	}

	.membership-top h3 {
		font-size: 38px;
		margin-bottom: 16px;
	}

	.membership-top p {
		font-size: 13px;
		line-height: 1.75;
	}

	.membership-tier {
		font-size: 11px;
		margin-bottom: 14px;
		max-width: 200px;
		line-height: 1.8;
	}

	.membership-benefits {
		margin: 28px 0;
	}

	.benefit-item {
		font-size: 13px;
		padding: 12px 0;
		line-height: 1.8;
	}

	.membership-button {
		height: 54px;
		font-size: 12px;
	}
}

/* ========================================= */
/* GALLERY SECTION                           */
/* ========================================= */

.gallery-section {
	position: relative;
	width: 100%;
	height: 92vh;
	min-height: 540px;
	overflow: hidden;
	background: #000;
}

.gallery-bg-video,
.gallery-bg-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	z-index: 0;
	opacity: 1;
	transition: opacity 0.4s ease;
}

.gallery-bg-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		rgba(0, 0, 0, 0.28) 0%,
		rgba(0, 0, 0, 0.08) 40%,
		rgba(0, 0, 0, 0.72) 100%
	);
	z-index: 1;
}

.gallery-content {
	position: relative;
	z-index: 2;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 56px 56px 44px;
}

.gallery-header {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.gallery-label {
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.55);
}

.gallery-title {
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(28px, 3.5vw, 50px);
	font-weight: 400;
	color: white;
	line-height: 1.12;
	font-style: italic;
}

.gallery-title em {
	font-style: normal;
}

/* STRIP */

.gallery-strip {
	display: flex;
	gap: 10px;
}

.gallery-card {
	flex: 1;
	height: 96px;
	border-radius: 10px;
	overflow: hidden;
	position: relative;
	cursor: pointer;
	opacity: 0.38;
	transition:
		flex 0.5s cubic-bezier(0.4, 0, 0.2, 1),
		opacity 0.3s ease,
		box-shadow 0.3s ease;
}

.gallery-card.active {
	flex: 2.6;
	opacity: 1;
	box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.55);
}

.gallery-card:not(.active):hover {
	flex: 1.7;
	opacity: 0.7;
}

.gallery-card-video,
.gallery-card-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	pointer-events: none;
}

.gallery-card-img {
	background-size: cover;
	background-position: center;
}

.gallery-card-grad {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		transparent 20%,
		rgba(0, 0, 0, 0.78) 100%
	);
}

.gallery-card-info {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 8px 12px 10px;
}

.gallery-card-badge {
	font-size: 8px;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.52);
	margin-bottom: 2px;
}

.gallery-card-name {
	font-family: "Cormorant Garamond", serif;
	font-size: 14px;
	font-weight: 400;
	color: white;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

@media (max-width: 900px) {
	.gallery-content {
		padding: 40px 24px 28px;
	}

	.gallery-card {
		height: 76px;
	}

	.gallery-card-name {
		font-size: 12px;
	}
}

@media (max-width: 580px) {
	.gallery-section {
		height: 80vh;
	}

	.gallery-card {
		height: 60px;
		border-radius: 8px;
	}

	.gallery-card-badge {
		display: none;
	}
}
