/* Vanadhara Resort — Master stylesheet */
:root {
	--gold: #C9A84C;
	--gold-light: #E8D5A3;
	--charcoal: #1A1A1A;
	--off-white: #F5F0E8;
	--deep-green: #1C3A2F;
	--cream: #FBF7F0;
	--white: #fff;
	--transition: 0.3s ease;
}

*,
*::before,
*::after {
	box-sizing: border-box;
	-webkit-tap-highlight-color: transparent;
}

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

.resort-body {
	margin: 0;
	padding: 0;
	font-family: 'Jost', sans-serif;
	font-size: 1rem;
	line-height: 1.6;
	color: var(--charcoal);
	background: var(--cream);
	overflow-x: hidden;
	width: 100%;
	max-width: 100vw;
}

/* Typography */
.resort-label,
.resort-hero-label {
	letter-spacing: 0.3em;
	text-transform: uppercase;
	font-size: 0.75rem;
	color: var(--gold);
}

h1, h2, h3, .resort-hero-title, .resort-section-title {
	font-family: 'Cormorant Garamond', serif;
	font-weight: 500;
}

/* Loader */
.resort-loader {
	position: fixed;
	inset: 0;
	background: var(--cream);
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.6s ease, visibility 0.6s ease;
}

.resort-body.loaded .resort-loader,
.resort-loader.fade-out {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.resort-loader-inner {
	text-align: center;
}

.resort-loader-monogram {
	width: 64px;
	height: 64px;
	color: var(--gold);
}

/* Custom cursor */
.resort-cursor {
	position: fixed;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--gold);
	pointer-events: none;
	z-index: 9998;
	transform: translate(-50%, -50%);
	transition: transform 0.15s ease, width 0.15s ease, height 0.15s ease;
}

.resort-cursor.hover {
	width: 32px;
	height: 32px;
	background: transparent;
	border: 2px solid var(--gold);
}

@media (hover: none) {
	.resort-cursor { display: none !important; }
}

@media (pointer: coarse) {
	.resort-cursor { display: none !important; }
	.resort-body * { cursor: auto !important; }
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

/* Navbar — always readable on light video (gradient shadow when not scrolled) */
.resort-navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	padding: max(1.25rem, env(safe-area-inset-top)) max(2rem, env(safe-area-inset-right)) max(1.25rem, env(safe-area-inset-bottom)) max(2rem, env(safe-area-inset-left));
	transition: background 0.5s ease, padding 0.5s ease, backdrop-filter 0.5s ease, box-shadow 0.5s ease;
	background: linear-gradient(
		to bottom,
		rgba(0, 0, 0, 0.55) 0%,
		rgba(0, 0, 0, 0.25) 60%,
		rgba(0, 0, 0, 0.00) 100%
	);
}
.resort-navbar.scrolled {
	background: rgba(26, 26, 26, 0.97);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	box-shadow: 0 2px 24px rgba(0, 0, 0, 0.3);
	padding: max(0.75rem, env(safe-area-inset-top)) max(2rem, env(safe-area-inset-right)) max(0.75rem, env(safe-area-inset-bottom)) max(2rem, env(safe-area-inset-left));
}

.resort-navbar-inner {
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
}

.resort-navbar-logo {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	text-decoration: none;
	color: inherit;
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.5rem;
}

.resort-logo-monogram { width: 36px; height: 36px; color: var(--gold); }
.resort-logo-text {
	color: #FFFFFF !important;
	text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}
.resort-navbar.scrolled .resort-logo-text { color: var(--white); }

.resort-navbar-links {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 2rem;
}

.resort-navbar-links a {
	color: #FFFFFF;
	text-decoration: none;
	font-size: 0.8rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	opacity: 0.92;
	transition: opacity 0.2s ease, color 0.2s ease;
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}
.resort-navbar-links a:hover {
	opacity: 1;
	color: var(--gold);
	text-shadow: none;
}
.resort-navbar.scrolled .resort-navbar-links a { color: var(--off-white); }

.resort-navbar-actions {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.resort-lang-select {
	background: transparent;
	border: 1px solid rgba(255,255,255,0.4);
	color: #FFFFFF;
	opacity: 0.85;
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
	padding: 0.4rem 0.6rem;
	font-size: 0.85rem;
	cursor: pointer;
}

.resort-btn {
	display: inline-block;
	padding: 0.75rem 1.5rem;
	border: 2px solid var(--gold);
	background: transparent;
	color: var(--gold);
	text-decoration: none;
	font-family: 'Jost', sans-serif;
	font-size: 0.85rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background var(--transition), color var(--transition);
	min-height: 44px;
	min-width: 44px;
	box-sizing: border-box;
}

.resort-btn:hover {
	background: var(--gold);
	color: var(--charcoal);
}

.resort-btn-cta {
	color: var(--gold) !important;
	box-shadow: 0 0 0 1px rgba(0,0,0,0.15), inset 0 0 20px rgba(0,0,0,0.1);
}
.resort-btn-gold {
	background: var(--gold);
	color: var(--charcoal);
	border-color: var(--gold);
}
.resort-btn-gold:hover {
	background: var(--gold-light);
	border-color: var(--gold-light);
	color: var(--charcoal);
}

.resort-navbar-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 32px;
	height: 32px;
	background: none;
	border: none;
	color: var(--white);
	cursor: pointer;
}
.resort-navbar-toggle span {
	display: block;
	width: 100%;
	height: 2px;
	background: #FFFFFF;
	filter: drop-shadow(0 1px 2px rgba(0,0,0,0.5));
	transition: transform 0.3s ease, opacity 0.3s ease;
	transform-origin: center;
}
.resort-navbar-toggle.open span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}
.resort-navbar-toggle.open span:nth-child(2) {
	opacity: 0;
	transform: scaleX(0);
}
.resort-navbar-toggle.open span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

.resort-navbar-overlay {
	display: none;
	position: fixed;
	inset: 0;
	background: var(--charcoal);
	z-index: 999;
	align-items: center;
	justify-content: center;
}
.resort-navbar-overlay.open { display: flex; }
.resort-navbar-overlay-links {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: center;
}
.resort-navbar-overlay-links a {
	display: block;
	padding: 1rem;
	color: var(--off-white);
	text-decoration: none;
	font-size: 1.25rem;
}
.resort-navbar-overlay-links a:hover { color: var(--gold); }

/* Hero */
.resort-hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}

/* Legacy hero overlay (other pages); homepage uses .hero-video-overlay */
.resort-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0.15));
}

/* ── Hero Section (homepage video) ── */
.hero-section {
	position: relative;
	width: 100vw;
	height: 100dvh;
	min-height: 100vh;
	min-height: calc(var(--vh, 1vh) * 100);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.hero-video-wrapper {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	overflow: hidden;
}

/* Video fills hero exactly — no letterboxing, no gaps */
.hero-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	display: block;
}

.hero-video-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to bottom,
		rgba(0, 0, 0, 0.50) 0%,
		rgba(0, 0, 0, 0.15) 18%,
		rgba(0, 0, 0, 0.05) 30%,
		rgba(0, 0, 0, 0.20) 50%,
		rgba(0, 0, 0, 0.55) 75%,
		rgba(0, 0, 0, 0.80) 100%
	);
	z-index: 1;
}

.hero-content {
	position: relative;
	z-index: 2;
	width: 100%;
	text-align: center;
	padding: 1.5rem 24px;
	background: rgba(26, 26, 26, 0.6);
	border-radius: 8px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.hero-booking-widget {
	position: relative;
	z-index: 2;
	width: 100%;
}

@media (max-width: 768px) {
	.hero-video {
		display: none !important;
	}
	.hero-video-wrapper {
		background-image: url('https://images.pexels.com/photos/975771/pexels-photo-975771.jpeg?w=1200&auto=compress');
		background-size: cover;
		background-position: center center;
		background-repeat: no-repeat;
	}
}

@media (prefers-reduced-motion: reduce) {
	.hero-video {
		display: none !important;
	}
	.hero-video-wrapper {
		background-image: url('https://images.pexels.com/photos/975771/pexels-photo-975771.jpeg?w=1920&auto=compress');
		background-size: cover;
		background-position: center;
	}
}

.resort-hero-content {
	position: relative;
	z-index: 2;
	padding: 2rem;
}

.resort-hero-label {
	font-family: 'Jost', sans-serif;
	font-size: clamp(0.6rem, 2vw, 0.75rem);
	letter-spacing: clamp(0.25em, 3vw, 0.4em);
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 1rem;
	text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
}
.resort-hero-title {
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(3rem, 10vw, 6.5rem);
	line-height: 1.0;
	color: #FFFFFF;
	margin: 0 0 1.25rem;
	text-shadow: 0 2px 24px rgba(0, 0, 0, 0.5), 0 1px 6px rgba(0, 0, 0, 0.4);
}
.resort-hero-subtitle {
	font-family: 'Jost', sans-serif;
	font-size: clamp(0.9rem, 2.5vw, 1.25rem);
	color: rgba(255, 255, 255, 0.90);
	font-style: italic;
	margin: 0 0 2.5rem;
	text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

.resort-hero-scroll {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	color: var(--white);
	animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
	0%, 100% { transform: translateX(-50%) translateY(0); }
	50% { transform: translateX(-50%) translateY(8px); }
}

/* Booking strip — dark glass, readable on light and dark video */
.resort-booking-strip,
.hero-booking-widget {
	position: absolute;
	bottom: clamp(24px, 5vh, 48px);
	left: 50%;
	transform: translateX(-50%);
	width: calc(100% - 48px);
	max-width: 860px;
	z-index: 3;
	padding: 1.25rem 1.75rem;
	padding-bottom: max(1.25rem, env(safe-area-inset-bottom));
	background: rgba(15, 15, 15, 0.55);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border: 1px solid rgba(201, 168, 76, 0.40);
	border-radius: 2px;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}
.resort-booking-strip-inner {
	max-width: 1000px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	gap: 1rem;
	padding: 0;
	background: transparent;
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
	border: none;
	border-radius: 0;
	box-shadow: none;
}
.resort-booking-field {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.25rem;
}
.resort-booking-field label {
	font-family: 'Jost', sans-serif;
	font-size: 0.65rem;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.70);
	text-shadow: none;
	font-weight: 500;
	margin-bottom: 0.35rem;
}
.resort-booking-field input,
.resort-booking-field select {
	background: rgba(255, 255, 255, 0.10);
	border: 1px solid rgba(201, 168, 76, 0.35);
	border-radius: 1px;
	color: #FFFFFF;
	font-family: 'Jost', sans-serif;
	font-size: 0.9rem;
	padding: 0.6rem 0.875rem;
	min-width: 140px;
	outline: none;
	transition: border-color 0.3s ease, background 0.3s ease;
	-webkit-appearance: none;
	appearance: none;
	color-scheme: dark;
}
.resort-booking-field input:focus,
.resort-booking-field select:focus {
	border-color: var(--gold);
	background: rgba(255, 255, 255, 0.15);
}
.resort-booking-field select option {
	background: #1A1A1A;
	color: #FFFFFF;
}
.hero-booking-widget .resort-btn-gold,
.resort-booking-strip .resort-btn-gold {
	min-height: 44px;
	font-weight: 600;
	letter-spacing: 0.2em;
}
.hero-booking-widget .resort-btn-gold:hover,
.resort-booking-strip .resort-btn-gold:hover {
	background: #b8973e;
	transform: translateY(-1px);
}

/* Sections */
.resort-section {
	padding: clamp(3rem, 8vw, 5rem) clamp(1rem, 5vw, 2rem);
	max-width: 1400px;
	margin: 0 auto;
}

.resort-section-dark { background: var(--charcoal); color: var(--off-white); }
.resort-section-green { background: var(--deep-green); color: var(--off-white); }

.resort-section-title {
	font-size: clamp(2rem, 4vw, 3rem);
	text-align: center;
	margin: 0 0 3rem;
	color: var(--charcoal);
}
.resort-section-title-light { color: var(--off-white); }

/* Intro — dark background so quote is readable */
.resort-intro.resort-section {
	background: var(--charcoal);
	color: var(--off-white);
	padding: clamp(4rem, 10vw, 7.5rem) clamp(1.5rem, 8vw, 10rem);
	text-align: center;
}
.resort-intro-quote {
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(1.6rem, 4vw, 3rem);
	font-style: italic;
	text-align: center;
	margin: 0 auto 2rem;
	max-width: 800px;
	line-height: 1.4;
	color: var(--off-white);
}
.resort-divider {
	width: 60px;
	height: 2px;
	background: var(--gold);
	margin: 0 auto 3rem;
	border: none;
}
.resort-intro-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: start;
	max-width: 1100px;
	margin: 0 auto;
	text-align: left;
}
.resort-intro-text p {
	margin: 0;
	font-size: clamp(0.9rem, 1.5vw, 1.05rem);
	line-height: 1.8;
	color: rgba(245, 240, 232, 0.75);
}
.resort-intro-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
}
.resort-stat, .resort-counter-item {
	text-align: center;
}
.resort-stat-num, .resort-counter-num {
	display: block;
	font-family: 'Cormorant Garamond', serif;
	font-size: 3rem;
	color: var(--gold);
	line-height: 1.2;
}
.resort-stat-label, .resort-counter-label {
	display: block;
	font-size: 0.7rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	margin-top: 0.25rem;
	color: inherit;
	opacity: 0.9;
}

/* Counters bar */
.resort-counters-inner {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
	max-width: 1000px;
	margin: 0 auto;
}

/* Rooms preview */
.resort-rooms-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}
.resort-room-card {
	background: var(--white);
	overflow: hidden;
	border: 1px solid transparent;
	transition: border-color var(--transition), box-shadow var(--transition);
}
.resort-room-card:hover {
	border-color: var(--gold);
	box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}
.resort-room-card-img {
	height: 0;
	padding-bottom: 65%;
	position: relative;
	overflow: hidden;
}
.resort-room-card-img img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}
.resort-room-card:hover .resort-room-card-img img { transform: scale(1.05); }
.resort-room-card-body { padding: 1.5rem; }
.resort-room-card-body h3 {
	font-size: 1.5rem;
	margin: 0 0 0.5rem;
}
.resort-room-card-body p { margin: 0 0 0.5rem; font-size: 0.95rem; }
.resort-room-price {
	font-weight: 500;
	color: var(--gold);
	margin-bottom: 0.75rem !important;
}
.resort-link {
	color: var(--gold);
	text-decoration: none;
	letter-spacing: 0.1em;
	font-size: 0.9rem;
}
.resort-link:hover { text-decoration: underline; }
.resort-link-arrow::after { content: " →"; }

/* Experiences */
.resort-experience-block {
	display: grid;
	grid-template-columns: 55% 1fr;
	gap: 3rem;
	align-items: center;
	margin-bottom: 4rem;
}
.resort-experience-block:last-child { margin-bottom: 0; }
.resort-experience-right .resort-experience-img { order: 2; }
.resort-experience-right .resort-experience-content { order: 1; }
.resort-experience-img {
	position: relative;
	padding-bottom: 70%;
	overflow: hidden;
}
.resort-experience-img img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.resort-experience-content .resort-label { display: block; margin-bottom: 0.5rem; }
.resort-experience-content h2 {
	font-size: clamp(1.75rem, 2.5vw, 2.5rem);
	margin: 0 0 1rem;
}
.resort-experience-content p { margin: 0 0 1rem; }

/* Testimonials */
.resort-testimonials-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.resort-testimonial-carousel { position: relative; min-height: 180px; }
.resort-testimonial {
	display: none;
	position: absolute;
	inset: 0;
}
.resort-testimonial.active { display: block; position: relative; }
.resort-testimonial blockquote {
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(1.25rem, 2vw, 1.5rem);
	font-style: italic;
	margin: 0 0 1rem;
	line-height: 1.6;
}
.resort-testimonial cite { font-size: 0.9rem; opacity: 0.9; }
.resort-testimonial-stars { color: var(--gold); margin-top: 0.5rem; font-size: 1rem; }
.resort-testimonial-dots {
	display: flex;
	justify-content: center;
	gap: 0.5rem;
	margin-top: 1.5rem;
}
.resort-testimonial-dots button {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: none;
	background: rgba(255,255,255,0.4);
	cursor: pointer;
	padding: 0;
}
.resort-testimonial-dots button.active { background: var(--gold); }

/* Instagram */
.resort-instagram-strip {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 0.25rem;
}
.resort-instagram-item {
	position: relative;
	display: block;
	aspect-ratio: 1;
	overflow: hidden;
}
.resort-instagram-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}
.resort-instagram-item::after {
	content: "";
	position: absolute;
	inset: 0;
	background: var(--gold);
	opacity: 0;
	transition: opacity 0.3s ease;
}
.resort-instagram-item:hover img { transform: scale(1.05); }
.resort-instagram-item:hover::after { opacity: 0.4; }

/* Footer */
.resort-footer {
	background: var(--charcoal);
	color: var(--off-white);
	padding: 4rem 2rem 0;
}
.resort-footer-inner {
	max-width: 1400px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
	gap: 3rem;
	padding-bottom: 3rem;
	border-bottom: 1px solid rgba(255,255,255,0.1);
}
.resort-footer-logo {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--white);
	text-decoration: none;
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
}
.resort-footer-logo .resort-logo-monogram { color: var(--gold); }
.resort-footer-tagline { margin: 0; font-size: 0.9rem; opacity: 0.85; }
.resort-footer-heading {
	font-size: 0.75rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--gold);
	margin: 0 0 1rem;
}
.resort-footer ul { list-style: none; margin: 0; padding: 0; }
.resort-footer ul a {
	color: var(--off-white);
	text-decoration: none;
	font-size: 0.95rem;
}
.resort-footer ul a:hover { color: var(--gold); }
.resort-footer address, .resort-footer p { margin: 0 0 0.5rem; font-size: 0.95rem; }
.resort-footer a { color: var(--off-white); }
.resort-footer a:hover { color: var(--gold); }
.resort-newsletter-form {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}
.resort-newsletter-form input {
	flex: 1;
	min-width: 180px;
	padding: 0.6rem 0.75rem;
	border: 1px solid rgba(255,255,255,0.3);
	background: rgba(255,255,255,0.05);
	color: var(--white);
	font-size: 0.9rem;
}
.resort-footer-bottom {
	max-width: 1400px;
	margin: 0 auto;
	padding: 1.25rem 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}
.resort-footer-copy, .resort-footer-privacy { margin: 0; font-size: 0.85rem; opacity: 0.8; }
.resort-footer-pexels { margin: 0; font-size: 10px; color: #888; }
.resort-footer-privacy { color: var(--off-white); }
.resort-footer-social {
	display: flex;
	gap: 1rem;
}
.resort-footer-social a {
	color: var(--off-white);
	transition: color var(--transition);
}
.resort-footer-social a:hover { color: var(--gold); }
.resort-footer-social svg { width: 20px; height: 20px; }

/* Page hero */
.resort-page-hero {
	position: relative;
	min-height: 50vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background-size: cover;
	background-position: center;
	margin-top: 0;
}
.resort-page-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0,0,0,0.5), rgba(0,0,0,0.2));
}
.resort-page-hero-title {
	position: relative;
	z-index: 2;
	font-size: clamp(2.5rem, 5vw, 4rem);
	color: var(--white);
	margin: 0;
}

/* Rooms page */
.resort-filter-tabs {
	display: flex;
	justify-content: center;
	gap: 0.5rem;
	margin-bottom: 2.5rem;
}
.resort-tab {
	padding: 0.6rem 1.25rem;
	border: 1px solid var(--charcoal);
	background: transparent;
	color: var(--charcoal);
	font-family: 'Jost', sans-serif;
	font-size: 0.85rem;
	letter-spacing: 0.05em;
	cursor: pointer;
	transition: background var(--transition), color var(--transition);
}
.resort-tab:hover,
.resort-tab.active {
	background: var(--charcoal);
	color: var(--cream);
}
.resort-rooms-grid-page {
	grid-template-columns: repeat(3, 1fr);
}
.resort-room-card-detail { display: block; }
.resort-room-card-detail.hidden { display: none !important; }
.resort-room-meta { font-size: 0.85rem; opacity: 0.85; }
.resort-room-amenities {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin: 0.5rem 0;
	font-size: 0.8rem;
	letter-spacing: 0.05em;
}

/* Fade up on scroll */
.resort-fade-up {
	opacity: 0;
	transform: translateY(30px);
}
.resort-fade-up.visible {
	opacity: 1;
	transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
	.resort-intro-grid { grid-template-columns: 1fr; }
	.resort-intro-stats { grid-template-columns: repeat(2, 1fr); }
	.resort-counters-inner { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
	.resort-rooms-grid { grid-template-columns: repeat(2, 1fr); }
	.resort-experience-block { grid-template-columns: 1fr; }
	.resort-experience-right .resort-experience-img { order: 1; }
	.resort-experience-right .resort-experience-content { order: 2; }
	.resort-footer-inner { grid-template-columns: 1fr 1fr; }
	.resort-rooms-grid-page { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
	.resort-navbar {
		padding: max(1rem, env(safe-area-inset-top)) max(1.25rem, env(safe-area-inset-right)) max(1rem, env(safe-area-inset-bottom)) max(1.25rem, env(safe-area-inset-left));
		background: linear-gradient(
			to bottom,
			rgba(0, 0, 0, 0.65) 0%,
			rgba(0, 0, 0, 0.30) 70%,
			rgba(0, 0, 0, 0.00) 100%
		);
	}
	.resort-navbar.scrolled {
		padding: max(0.75rem, env(safe-area-inset-top)) max(1.25rem, env(safe-area-inset-right)) max(0.75rem, env(safe-area-inset-bottom)) max(1.25rem, env(safe-area-inset-left));
	}
	.resort-navbar-links,
	.resort-navbar-actions .resort-lang-select { display: none; }
	.resort-navbar-actions .resort-btn-cta { display: none; }
	.resort-navbar-toggle { display: flex; }
	.resort-booking-strip,
	.hero-booking-widget {
		width: calc(100% - 32px);
		padding: 1rem;
		padding-bottom: max(1rem, env(safe-area-inset-bottom));
		bottom: 1.25rem;
		background: rgba(10, 10, 10, 0.75);
	}
	.resort-booking-strip-inner { flex-direction: column; align-items: stretch; }
	.resort-booking-field { min-width: 0; }
	.resort-booking-field input,
	.resort-booking-field select { width: 100%; min-width: 0; }
	.hero-booking-widget .resort-btn-gold,
	.resort-booking-strip .resort-btn-gold { width: 100%; }
	.resort-intro-stats { grid-template-columns: 1fr; }
	.resort-counters-inner { grid-template-columns: 1fr; }
	.resort-rooms-grid { grid-template-columns: 1fr; }
	.resort-experience-block .resort-experience-img { aspect-ratio: 16 / 9; }
	.resort-experience-block .resort-experience-img img { width: 100%; height: 100%; object-fit: cover; }
	.resort-instagram-strip { grid-template-columns: repeat(3, 1fr); }
	.resort-footer-inner { grid-template-columns: 1fr; text-align: center; }
	.resort-footer-bottom { flex-direction: column; text-align: center; }
	.resort-footer-inner { padding-bottom: max(2rem, env(safe-area-inset-bottom)); }
	.resort-rooms-grid-page { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
	.resort-section { padding: 3rem 1rem; }
	.resort-instagram-strip { grid-template-columns: repeat(2, 1fr); }
	.resort-booking-step-actions { flex-direction: column; }
	.resort-booking-step-actions .resort-btn { width: 100%; }
}

.resort-body.menu-open { overflow: hidden; }

/* Dining */
.resort-dining-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
	margin-bottom: 3rem;
}
.resort-dining-card { background: var(--white); overflow: hidden; border: 1px solid rgba(0,0,0,0.06); }
.resort-dining-card-img { padding-bottom: 60%; position: relative; overflow: hidden; }
.resort-dining-card-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.resort-dining-card-body { padding: 1.5rem; }
.resort-dining-card-body h2 { font-size: 1.5rem; margin: 0 0 0.5rem; }
.resort-dining-type { color: var(--gold); font-size: 0.85rem; margin: 0 0 0.25rem; }
.resort-dining-hours, .resort-dining-dress { font-size: 0.9rem; margin: 0 0 0.5rem; opacity: 0.9; }
.resort-cta-banner {
	text-align: center;
	padding: 3rem 2rem;
	border-radius: 4px;
}
.resort-cta-banner h2 { margin: 0 0 0.5rem; color: var(--off-white); }
.resort-cta-banner p { margin: 0 0 1rem; opacity: 0.9; }
.resort-cta-banner .resort-btn { margin-top: 0.5rem; }

/* Accordion */
.resort-accordion { max-width: 800px; margin: 0 auto; }
.resort-accordion-item { border-bottom: 1px solid rgba(0,0,0,0.08); }
.resort-accordion-head {
	width: 100%;
	padding: 1.25rem 0;
	background: none;
	border: none;
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(1.1rem, 3vw, 1.35rem);
	text-align: left;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.resort-accordion-head::after { content: "+"; font-size: 1.2rem; }
.resort-accordion-item.open .resort-accordion-head::after { content: "−"; }
.resort-accordion-body {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.35s ease;
}
.resort-accordion-body.open { max-height: 500px; }
.resort-accordion-body > * { padding: 0 0 1rem; }
.resort-treatment { padding: 0.5rem 0; font-size: 0.95rem; border-bottom: 1px solid rgba(0,0,0,0.05); }
.resort-treatment:last-child { border-bottom: none; }

/* Facilities */
.resort-facilities-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	max-width: 900px;
	margin: 0 auto;
}
.resort-facility-card { text-align: center; padding: 2rem 1rem; }
.resort-facility-icon { font-size: 2.5rem; display: block; margin-bottom: 0.5rem; }
.resort-facility-card h3 { font-size: 1.25rem; margin: 0 0 0.5rem; color: var(--gold); }
.resort-facility-card p { margin: 0; font-size: 0.9rem; opacity: 0.9; }

/* Forms */
.resort-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.resort-form-group { margin-bottom: 1rem; }
.resort-form-group label { display: block; font-size: 0.8rem; letter-spacing: 0.08em; margin-bottom: 0.35rem; }
.resort-form-group input, .resort-form-group select, .resort-form-group textarea {
	width: 100%;
	padding: 0.6rem 0.75rem;
	border: 1px solid rgba(0,0,0,0.15);
	font-family: 'Jost', sans-serif;
	font-size: 0.95rem;
	-webkit-appearance: none;
	appearance: none;
	border-radius: 0;
}
.resort-form-group input, .resort-form-group select {
	min-height: 44px;
}
.resort-spa-form, .resort-contact-form { max-width: 560px; }
.resort-checkbox-group { display: flex; flex-wrap: wrap; gap: 1rem; }
.resort-checkbox-group label { display: flex; align-items: center; gap: 0.5rem; cursor: pointer; }

/* Gallery */
.resort-gallery-masonry {
	column-count: 3;
	column-gap: 1rem;
}
.resort-gallery-item {
	break-inside: avoid;
	margin-bottom: 1rem;
	cursor: pointer;
}
.resort-gallery-item.hidden { display: none; }
.resort-gallery-item img { width: 100%; display: block; vertical-align: middle; }
.resort-lightbox {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 9999;
	background: rgba(0,0,0,0.95);
	align-items: center;
	justify-content: center;
}
.resort-lightbox.open { display: flex; }
.resort-lightbox-close {
	position: absolute;
	top: 1rem;
	right: 1.5rem;
	background: none;
	border: none;
	color: var(--white);
	font-size: 2rem;
	cursor: pointer;
	line-height: 1;
}
.resort-lightbox-prev, .resort-lightbox-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255,255,255,0.1);
	border: none;
	color: var(--white);
	width: 48px;
	height: 48px;
	font-size: 2rem;
	cursor: pointer;
}
.resort-lightbox-prev { left: 1rem; }
.resort-lightbox-next { right: 1rem; }
.resort-lightbox-content { max-width: 90vw; max-height: 85vh; text-align: center; }
.resort-lightbox-content img { max-width: 100%; max-height: 80vh; object-fit: contain; }
.resort-lightbox-caption { color: var(--off-white); margin-top: 0.5rem; }

@media (max-width: 900px) {
	.resort-gallery-masonry { column-count: 2; }
}
@media (max-width: 600px) {
	.resort-gallery-masonry { column-count: 1; }
	.resort-dining-grid { grid-template-columns: 1fr; }
	.resort-facilities-grid { grid-template-columns: 1fr; }
}

/* Booking page */
.resort-booking-layout {
	display: grid;
	grid-template-columns: 1fr 380px;
	gap: 3rem;
	align-items: start;
}
.resort-booking-form-wrap { min-width: 0; }
.resort-booking-step { display: none; }
.resort-booking-step.active { display: block; }
.resort-booking-step h2 { font-size: 1.5rem; margin: 0 0 1.25rem; }
.resort-booking-step-actions { display: flex; gap: 1rem; margin-top: 1.5rem; }
.resort-room-select-cards { display: flex; flex-direction: column; gap: 0.75rem; }
.resort-room-select-card {
	display: flex;
	flex-direction: column;
	padding: 1rem;
	border: 2px solid rgba(0,0,0,0.1);
	cursor: pointer;
	transition: border-color var(--transition);
}
.resort-room-select-card:has(input:checked) { border-color: var(--gold); background: rgba(201,168,76,0.06); }
.resort-room-select-card input { margin-right: 0.5rem; }
.resort-room-select-card small { font-size: 0.85rem; color: var(--gold); margin-top: 0.25rem; }
.resort-booking-summary-inline { padding: 1rem; background: var(--off-white); margin-bottom: 1rem; border-radius: 4px; }
.resort-card-form { margin: 1rem 0; }
.resort-card-form input { margin-bottom: 0.5rem; }
.resort-card-flip-wrap {
	perspective: 1000px;
	max-width: 360px;
}
.resort-card-inner {
	position: relative;
	height: 200px;
	transform-style: preserve-3d;
	transition: transform 0.6s;
}
.resort-card-flip-wrap.flipped .resort-card-inner { transform: rotateY(180deg); }
.resort-card-front, .resort-card-back {
	position: absolute;
	width: 100%;
	height: 100%;
	backface-visibility: hidden;
	background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
	border-radius: 12px;
	padding: 1.25rem;
	color: var(--off-white);
}
.resort-card-back {
	transform: rotateY(180deg);
	display: flex;
	align-items: flex-end;
}
.resort-card-back input { background: rgba(255,255,255,0.1); color: var(--white); width: 80px; }
.resort-booking-summary-panel { position: sticky; top: 100px; }
.resort-booking-summary-sticky { background: var(--off-white); padding: 1.5rem; border-radius: 4px; }
.resort-summary-image { padding-bottom: 60%; position: relative; overflow: hidden; margin-bottom: 1rem; border-radius: 4px; }
.resort-summary-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.resort-summary-room, .resort-summary-total { font-weight: 500; }
.resort-summary-total { color: var(--gold); font-size: 1.1rem; margin-top: 0.5rem; }
.resort-booking-success { text-align: center; padding: 3rem; }
.resort-success-check {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: var(--gold);
	color: var(--charcoal);
	font-size: 2.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
	animation: successPop 0.5s ease;
}
@keyframes successPop {
	0% { transform: scale(0); opacity: 0; }
	50% { transform: scale(1.1); }
	100% { transform: scale(1); opacity: 1; }
}

@media (max-width: 1024px) {
	.resort-booking-layout { grid-template-columns: 1fr; }
	.resort-booking-summary-panel { position: static; }
}
@media (max-width: 600px) {
	.resort-form-row { grid-template-columns: 1fr; }
}

@media (min-width: 2560px) {
	.resort-navbar-inner,
	.resort-section,
	.resort-footer-inner,
	.resort-footer-bottom { max-width: 1600px; }
}
