/* ==========================================================================
   Hotel OM International — Editorial Luxury Stylesheet (v2)
   Palette: Ivory #FAF7F1 · Charcoal #262422 · Gold #B98D4F · Beige #EAE1D2
   Type: Cormorant Garamond (display) / Jost (body/utility)
   Signature: the hairline — a thin gold rule that grows on reveal,
   echoing the unrolling of a temple scroll. Used once per section as
   punctuation, never as decoration.
   ========================================================================== */

:root {
	--ivory: #FAF7F1;
	--ivory-deep: #F2ECE0;
	--charcoal: #262422;
	--charcoal-soft: #514c47;
	--gold: #B98D4F;
	--gold-deep: #8d4f00;
	--gold-pale: #DFC79A;
	--beige: #EAE1D2;
	--white: #FFFFFF;

	--font-display: 'Cormorant Garamond', Georgia, serif;
	--font-body: 'Jost', Arial, sans-serif;

	--container-max: 1360px;
	--edge: 6vw;
	--ease: cubic-bezier(.22, .7, .24, 1);
	--shadow-1: 0 30px 70px -30px rgba(38, 36, 34, .28);
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-body);
	font-weight: 300;
	color: var(--charcoal);
	background: var(--ivory);
	font-size: 16px;
	line-height: 1.8;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}

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

a {
	color: inherit;
	text-decoration: none;
	transition: color .3s var(--ease);
}

ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

button {
	font-family: inherit;
	background: none;
	border: none;
	cursor: pointer;
}

::selection {
	background: var(--gold);
	color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-display);
	color: var(--charcoal);
	font-weight: 500;
	line-height: 1.12;
	letter-spacing: .005em;
	margin: 0 0 1rem;
}

h1 {
	font-size: clamp(2.8rem, 5vw, 3.6rem);
	font-weight: 500;
}

h2 {
	font-size: clamp(2.1rem, 3.4vw, 2.6rem);
}

h3 {
	font-size: clamp(1.4rem, 2.2vw, 1.9rem);
	font-weight: 500;
}

p {
	margin: 0 0 1rem;
	color: var(--charcoal-soft);
	font-weight: 300;
}

.lede {
	font-size: 1.15rem;
	line-height: 1.85;
	max-width: 44ch;
}

.container-xl {
	width: 100%;
	max-width: var(--container-max);
	margin: 0 auto;
	padding: 0 4vw;
}

.bleed-l {
	padding-left: 0;
}

.bleed-r {
	padding-right: 0;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
	outline: 1.5px solid var(--gold-deep);
	outline-offset: 3px;
}

@media (prefers-reduced-motion:reduce) {
	* {
		animation-duration: .001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .001ms !important;
		scroll-behavior: auto !important;
	}
}

/* ---------- Section rhythm ---------- */
.section {
	padding: 3vw 0;
}

.section-tight {
	padding: 5vw 0;
}

.section-beige {
	background: var(--beige);
}

.section-dark {
	background: var(--charcoal);
	color: #cfc6b8;
}

.section-dark h2,
.section-dark h3 {
	color: var(--ivory);
}

.section-dark p {
	color: #a89f92;
}

/* ---------- Eyebrow + signature hairline ---------- */
.eyebrow {
	display: inline-block;
	font-family: var(--font-body);
	letter-spacing: .32em;
	text-transform: uppercase;
	font-size: .7rem;
	font-weight: 500;
	color: var(--gold-deep);
	margin-bottom: 20px;
}

.section-dark .eyebrow {
	color: var(--gold-pale);
}

.hairline {
	display: block;
	width: 64px;
	height: 1px;
	background: var(--gold);
	margin: 0 0 26px;
	transform-origin: left center;
	animation: growLine 1.1s var(--ease) both;
}

.hairline.center {
	margin-left: auto;
	margin-right: auto;
}

@keyframes growLine {
	from {
		transform: scaleX(0);
	}

	to {
		transform: scaleX(1);
	}
}

.section-head {
	max-width: 640px;
	margin-bottom: 5vw;
}

.section-head.center {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

/* ---------- Buttons — thin-line luxury, no fills by default ---------- */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 16px 0;
	font-family: var(--font-body);
	font-size: .76rem;
	font-weight: 500;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--charcoal);
	border: none;
	border-bottom: 1px solid var(--charcoal);
	cursor: pointer;
	transition: all .4s var(--ease);
	background: none;
	border-radius: 0;
}

.btn i,
.btn .arrow {
	transition: transform .4s var(--ease);
}

.btn:hover {
	color: var(--gold-deep);
	border-color: var(--gold-deep);
}

.btn:hover i,
.btn:hover .arrow {
	transform: translateX(6px);
}

.btn-solid {
	padding: 17px 40px;
	border: 1px solid var(--charcoal);
	background: var(--charcoal);
	color: var(--ivory);
}

.btn-solid:hover {
	background: var(--gold-deep);
	border-color: var(--gold-deep);
	color: var(--white);
}

.btn-ghost {
	padding: 17px 40px;
	border: 1px solid rgba(255, 255, 255, .55);
	color: var(--white);
}

.btn-ghost:hover {
	border-color: var(--gold);
	color: var(--gold);
}

.btn-block {
	width: 100%;
	justify-content: center;
}

.btn-sm {
    padding: 9px 25px;
    font-size: .68rem;
}

/* ---------- Navbar — minimal, transparent-on-hero ---------- */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	padding: 15px 0;
	transition: all .5s var(--ease);
	background: #fff;
}

.site-header.is-scrolled {
	background: rgba(250, 247, 241, .94);
	backdrop-filter: blur(14px);
	padding: 18px 0;
	box-shadow: 0 1px 0 rgba(38, 36, 34, .08);
}

.navbar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.brand {
	display: flex;
	align-items: center;
	gap: 12px;
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 1.5rem;
	color: var(--white);
	letter-spacing: .01em;
}

.is-scrolled .brand {
	color: var(--charcoal);
}

.brand .brand-mark {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	border: 1px solid var(--gold);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gold);
	font-size: 1rem;
	flex-shrink: 0;
}

.brand small {
	display: block;
	font-family: var(--font-body);
	font-size: .55rem;
	letter-spacing: .28em;
	text-transform: uppercase;
	color: var(--gold);
	font-weight: 400;
}

.nav-menu {
	display: flex;
	align-items: center;
	gap: 40px;
}

.nav-menu a {
	color: #000;
	font-family: var(--font-body);
	font-size: .72rem;
	font-weight: 500;
	letter-spacing: .16em;
	text-transform: uppercase;
	position: relative;
	padding: 4px 0;
}

.is-scrolled .nav-menu a {
	color: var(--charcoal);
}

.nav-menu a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -3px;
	width: 0;
	height: 1px;
	background: var(--gold);
	transition: width .35s var(--ease);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
	width: 100%;
}

.nav-menu a.active {
	color: var(--gold);
}

.is-scrolled .nav-menu a.active {
	color: var(--gold-deep);
}

.nav-cta {
	display: flex;
	align-items: center;
	gap: 26px;
}

.nav-phone {
	color: #000;
	font-size: .78rem;
	letter-spacing: .03em;
}

.is-scrolled .nav-phone {
	color: var(--charcoal);
}

.nav-cta .btn-ghost {
	border-color: #000;
	color: #000;
	padding: 13px 30px;
}

.is-scrolled .nav-cta .btn-ghost {
	border-color: var(--charcoal);
	color: var(--charcoal);
}

.is-scrolled .nav-cta .btn-ghost:hover {
	border-color: var(--gold-deep);
	color: var(--gold-deep);
}

.navbar-toggler {
	display: none;
	width: 40px;
	height: 40px;
	align-items: center;
	justify-content: center;
	color: var(--white);
	font-size: 1rem;
}

.is-scrolled .navbar-toggler {
	color: var(--charcoal);
}

@media (max-width:991.98px) {

	.nav-menu,
	.nav-cta .btn-ghost,
	.nav-phone {
		display: none;
	}

	.navbar-toggler {
		display: flex;
	}
}

.mobile-menu {
	position: fixed;
	top: 0;
	right: -100%;
	width: min(360px, 88%);
	height: 100%;
	background: var(--charcoal);
	z-index: 1100;
	padding: 40px 34px;
	transition: right .5s var(--ease);
	overflow-y: auto;
}

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

.mobile-menu .close-menu {
	width: 38px;
	height: 38px;
	color: var(--gold);
	border: 1px solid var(--gold);
	border-radius: 50%;
	margin-bottom: 38px;
}

.mobile-menu a {
	display: block;
	color: #e9e3d6;
	font-family: var(--font-display);
	font-size: 1.7rem;
	font-weight: 500;
	padding: 14px 0;
	border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.mobile-menu a:hover {
	color: var(--gold);
}

.menu-overlay {
	position: fixed;
	inset: 0;
	background: rgba(20, 18, 15, .55);
	z-index: 1050;
	opacity: 0;
	visibility: hidden;
	transition: all .4s var(--ease);
}

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

/* ---------- Sticky vertical Book Now tab (signature booking element) ---------- */
.book-tab {
	position: fixed;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: 960;
	writing-mode: vertical-rl;
	background: var(--charcoal);
	color: var(--ivory);
	padding: 26px 12px;
	letter-spacing: .22em;
	text-transform: uppercase;
	font-size: .72rem;
	font-weight: 500;
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
	transition: background .35s var(--ease), padding .35s var(--ease);
}

.book-tab:hover {
	background: var(--gold-deep);
	padding-right: 18px;
}

@media (max-width:767.98px) {
	.book-tab {
		display: none;
	}
}

/* ---------- Page hero (inner pages) — minimal, no heavy gradient ---------- */
.page-hero {
	position: relative;
	min-height: 64vh;
	display: flex;
	align-items: flex-end;
	padding: 210px 0 90px;
	background-size: cover;
	background-position: center;
	color: var(--white);
}

.page-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(38, 36, 34, .12) 0%, rgba(38, 36, 34, .62) 100%);
}

.page-hero .container-xl {
	position: relative;
	z-index: 2;
}

.page-hero .eyebrow {
	color: var(--gold-pale);
}

.page-hero h1 {
	color: var(--white);
	margin-bottom: 6px;
}

.breadcrumb-row {
	list-style: none;
	display: flex;
	gap: 8px;
	padding: 0;
	margin: 0;
	font-size: .75rem;
	letter-spacing: .06em;
	color: #e3dcce;
	text-transform: uppercase;
}

.breadcrumb-row li:not(:last-child)::after {
	content: "/";
	margin-left: 8px;
	color: var(--gold);
}

.breadcrumb-row a {
	color: #e3dcce;
}

.breadcrumb-row a:hover {
	color: var(--gold);
}

/* ---------- Why Stay — numbered, no boxes ---------- */
.numbered-feature {
	padding: 0 0 0 0;
	height: 100%;
}

.numbered-feature .idx {
	font-family: var(--font-display);
	font-size: 2.6rem;
	color: var(--gold-pale);
	line-height: 1;
	margin-bottom: 18px;
	font-weight: 500;
}

.numbered-feature h3 {
	font-size: 1.25rem;
	margin-bottom: 10px;
}

.numbered-feature p {
	font-size: .92rem;
	margin-bottom: 0;
}

.numbered-feature .rule {
	width: 100%;
	height: 1px;
	background: rgba(38, 36, 34, .12);
	margin-bottom: 22px;
}

/* Legacy feature-card kept for inner pages, restyled to be border-only, no fill/shadow */
.feature-card {
	background: transparent;
	border: none;
	border-top: 1px solid rgba(38, 36, 34, .14);
	padding: 34px 0 0;
	text-align: left;
	height: 100%;
	transition: transform .4s var(--ease);
}

.feature-card:hover {
	transform: translateY(-4px);
}

.feature-card .icon-wrap {
	width: 46px;
	height: 46px;
	border-radius: 50%;
	border: 1px solid var(--gold);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 0 20px;
	color: var(--gold-deep);
	font-size: 1.15rem;
	background: none;
}

.feature-card h3 {
	font-size: 1.2rem;
	margin-bottom: 10px;
}

.feature-card p {
	font-size: .92rem;
	margin-bottom: 0;
}

/* ---------- Featured Rooms — full-width editorial strips ---------- */
.room-strip {
	padding: 2vw 0;
	border-top: 1px solid rgba(38, 36, 34, .12);
}

.room-strip:last-child {
	border-bottom: 1px solid rgba(38, 36, 34, .12);
}

.room-strip .row {
	align-items: center;
}

.room-strip .room-img-wrap {
	overflow: hidden;
	border-radius: 2px;
}

.room-strip .room-img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: 4/3;
	transition: transform 1s var(--ease);
}

.room-strip:hover .room-img-wrap img {
	transform: scale(1.045);
}

.room-strip .room-copy {
	padding: 4vw;
}

.room-strip .room-price {
	font-family: var(--font-display);
	font-size: 1.6rem;
	color: var(--gold-deep);
	margin-bottom: 6px;
}

.room-strip .room-price span {
	font-family: var(--font-body);
	font-size: .7rem;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--charcoal-soft);
	display: block;
	margin-top: 4px;
}

.room-amenity-line {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 26px;
	margin: 22px 0 30px;
	font-size: .82rem;
	letter-spacing: .02em;
	color: var(--charcoal-soft);
}

.room-amenity-line span {
	display: flex;
	align-items: center;
	gap: 8px;
}

.room-amenity-line i {
	color: var(--gold);
}

/* legacy .room-card (used on rooms.html listing + similar rooms) — reskinned, no drop shadow, hairline border */
.room-card {
	background: var(--white);
	border-radius: 2px;
	overflow: hidden;
	box-shadow: none;
	border: 1px solid rgba(38, 36, 34, .1);
	height: 100%;
	transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}

.room-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-1);
}

.room-card .room-img {
	position: relative;
	overflow: hidden;
	height: 280px;
}

.room-card .room-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .8s var(--ease);
}

.room-card:hover .room-img img {
	transform: scale(1.06);
}

.room-card .room-price-tag {
	position: absolute;
	top: 18px;
	right: 18px;
	background: rgba(250, 247, 241, .94);
	color: var(--gold-deep);
	padding: 8px 16px;
	font-weight: 500;
	font-size: .8rem;
	letter-spacing: .03em;
}

.room-card .room-price-tag span {
	display: block;
	font-size: .58rem;
	color: var(--charcoal-soft);
	text-transform: uppercase;
	letter-spacing: .08em;
	font-weight: 400;
}

.room-card .room-body {
	padding: 30px;
}

.room-card h3 {
	font-size: 1.35rem;
	margin-bottom: 10px;
}

.room-card .room-meta {
	display: flex;
	gap: 16px;
	font-size: .78rem;
	color: var(--charcoal-soft);
	margin-bottom: 16px;
	flex-wrap: wrap;
	letter-spacing: .02em;
}

.room-card .room-meta span {
	display: flex;
	align-items: center;
	gap: 6px;
}

.room-card .room-amenities {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 24px;
}

.room-card .room-amenities li {
	font-size: .68rem;
	letter-spacing: .05em;
	text-transform: uppercase;
	color: var(--gold-deep);
	border: 1px solid var(--gold-pale);
	padding: 6px 13px;
}

.room-card .room-actions {
	display: flex;
	gap: 22px;
	align-items: center;
}

/* ---------- Facility tile — refined list, no boxes ---------- */
.facility-tile {
	display: flex;
	align-items: flex-start;
	gap: 18px;
	text-align: left;
	padding: 24px 0;
	border-bottom: 1px solid rgba(38, 36, 34, .1);
	height: 100%;
	background: none;
	transition: none;
}

.facility-tile:hover {
	background: none;
	border-color: var(--gold);
}

.facility-tile:hover h4,
.facility-tile:hover p {
	color: var(--charcoal);
}

.facility-tile .icon-wrap {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1px solid var(--gold-pale);
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gold-deep);
	font-size: 1.05rem;
	background: none;
	transition: none;
}

.facility-tile:hover .icon-wrap {
	background: var(--gold);
	color: var(--white);
	border-color: var(--gold);
}

.facility-tile h4 {
	font-size: 1rem;
	margin-bottom: 4px;
	font-family: var(--font-display);
	font-weight: 600;
	transition: color .3s;
}

.facility-tile p {
	font-size: .85rem;
	margin: 0;
	transition: color .3s;
}

/* ---------- Attractions horizontal strip ---------- */
.attraction-frame {
	position: relative;
	overflow: hidden;
	border-radius: 2px;
	height: 420px;
}

.attraction-frame img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .8s var(--ease);
}

.attraction-frame:hover img {
	transform: scale(1.07);
}

.attraction-frame .frame-caption {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 26px 24px;
	background: linear-gradient(0deg, rgba(20, 18, 15, .82), transparent);
	color: var(--white);
}

.attraction-frame .frame-caption .dist {
	font-size: .68rem;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--gold-pale);
	display: block;
	margin-bottom: 6px;
}

.attraction-frame .frame-caption h3 {
	color: var(--white);
	font-size: 1.35rem;
	margin: 0;
}

/* ---------- Gallery — masonry ---------- */
.masonry {
	column-count: 1;
	column-gap: 18px;
}

@media (min-width:576px) {
	.masonry {
		column-count: 2;
	}
}

@media (min-width:992px) {
	.masonry {
		column-count: 3;
	}
}

.masonry .gallery-item {
	display: block;
	break-inside: avoid;
	margin-bottom: 18px;
	position: relative;
	overflow: hidden;
	border-radius: 2px;
}

.gallery-item img {
	width: 100%;
	transition: transform .7s var(--ease);
}

.gallery-item:hover img {
	transform: scale(1.08);
}

.gallery-item .gallery-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(38, 36, 34, 0) 45%, rgba(38, 36, 34, .78) 100%);
	display: flex;
	align-items: flex-end;
	padding: 20px;
	opacity: 0;
	transition: opacity .4s var(--ease);
}

.gallery-item:hover .gallery-overlay {
	opacity: 1;
}

.gallery-overlay span {
	color: var(--white);
	font-family: var(--font-display);
	font-size: 1.1rem;
}

.gallery-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 6px 30px;
	justify-content: center;
	margin-bottom: 56px;
}

.gallery-filters button {
	padding: 6px 0;
	background: none;
	font-size: .72rem;
	letter-spacing: .14em;
	text-transform: uppercase;
	font-weight: 500;
	color: var(--charcoal-soft);
	border-bottom: 1px solid transparent;
	transition: all .3s var(--ease);
}

.gallery-filters button.active,
.gallery-filters button:hover {
	color: var(--gold-deep);
	border-color: var(--gold);
}

/* ---------- Testimonials — single large quote ---------- */
.quote-slide {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.quote-mark {
	font-family: var(--font-display);
	font-size: 5rem;
	color: var(--gold-pale);
	line-height: 1;
	margin-bottom: 6px;
}

.quote-slide p {
	font-family: var(--font-display);
	font-size: clamp(1.3rem, 2.4vw, 1.8rem);
	font-style: italic;
	color: var(--charcoal);
	line-height: 1.5;
	margin-bottom: 28px;
	font-weight: 500;
}

.quote-author {
	font-size: .78rem;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--charcoal-soft);
}

.quote-author strong {
	color: var(--gold-deep);
	font-family: var(--font-body);
	font-weight: 600;
}

.google-badge {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	margin-top: 8px;
}

.google-badge strong {
	font-family: var(--font-display);
	font-size: 1.5rem;
}

/* legacy testimonial-card (used on inner pages if needed) */
.testimonial-card {
	background: var(--white);
	border: 1px solid rgba(38, 36, 34, .1);
	padding: 38px 32px;
	height: 100%;
}

.testimonial-card .stars {
	color: var(--gold);
	margin-bottom: 16px;
	font-size: .85rem;
}

.testimonial-card p {
	font-style: italic;
	color: var(--charcoal);
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-top: 22px;
}

.testimonial-author img {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	object-fit: cover;
}

.testimonial-author strong {
	display: block;
	font-family: var(--font-display);
	font-size: 1rem;
}

.testimonial-author span {
	font-size: .75rem;
	color: var(--charcoal-soft);
}

/* ---------- FAQ accordion — hairline, serif question ---------- */
.accordion-luxe .accordion-item {
	border: none;
	border-bottom: 1px solid rgba(38, 36, 34, .14);
	background: transparent;
}

.accordion-luxe .accordion-button {
	font-family: var(--font-display);
	font-size: 1.2rem;
	font-weight: 500;
	background: transparent;
	padding: 26px 0;
	color: var(--charcoal);
	box-shadow: none;
}

.accordion-luxe .accordion-button:not(.collapsed) {
	color: var(--gold-deep);
}

.accordion-luxe .accordion-button::after {
	filter: sepia(1) saturate(2) hue-rotate(0deg);
}

.accordion-luxe .accordion-body {
	padding: 0 0 28px;
	color: var(--charcoal-soft);
	font-size: .94rem;
}

/* ---------- Location section ---------- */
.map-panel {
	background: var(--beige);
	padding: 4vw;
	border-radius: 2px;
}

.map-frame {
	overflow: hidden;
	border-radius: 2px;
}

.map-frame iframe {
	width: 100%;
	height: 100%;
	min-height: 440px;
	border: 0;
	display: block;
	filter: grayscale(.25) contrast(1.03);
}

.direction-list li {
	display: flex;
	justify-content: space-between;
	padding: 14px 0;
	border-bottom: 1px solid rgba(38, 36, 34, .12);
	font-size: .92rem;
}

.direction-list li span:last-child {
	color: var(--gold-deep);
	font-weight: 500;
}

/* ---------- Footer — premium editorial ---------- */
.site-footer {
	background: var(--charcoal);
	color: #a89f92;
	padding-top: 8vw;
}

.site-footer h5 {
	color: var(--ivory);
	font-family: var(--font-body);
	font-size: .72rem;
	letter-spacing: .18em;
	text-transform: uppercase;
	font-weight: 500;
	margin-bottom: 26px;
}

.site-footer a {
	color: #a89f92;
}

.site-footer a:hover {
	color: var(--gold);
}

.footer-brand h3 {
	color: var(--ivory);
	font-size: 2rem;
	margin-bottom: 14px;
}

.footer-links li {
	margin-bottom: 14px;
	font-size: .92rem;
}

.footer-contact li {
	margin-bottom: 18px;
	font-size: .9rem;
	line-height: 1.7;
}

.footer-contact li strong {
	display: block;
	color: var(--ivory);
	font-size: .66rem;
	letter-spacing: .14em;
	text-transform: uppercase;
	margin-bottom: 6px;
	font-weight: 500;
}

.footer-social {
	display: flex;
	gap: 18px;
	margin-top: 18px;
}

.footer-social a {
	font-size: 1.1rem;
}

.newsletter-form {
	display: flex;
	border-bottom: 1px solid rgba(255, 255, 255, .25);
	padding-bottom: 10px;
}

.newsletter-form input {
	flex: 1;
	background: transparent;
	border: none;
	padding: 6px 0;
	color: var(--ivory);
	font-size: .9rem;
}

.newsletter-form input::placeholder {
	color: #786f63;
}

.newsletter-form input:focus {
	outline: none;
}

.newsletter-form button {
	color: var(--gold);
	font-size: .95rem;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, .1);
	margin-top: 6vw;
	padding: 26px 0;
	font-size: .78rem;
	letter-spacing: .02em;
}

.footer-bottom a {
	color: var(--gold-pale);
}

/* ---------- Utility widgets ---------- */
.floating-whatsapp {
	position: fixed;
	bottom: 28px;
	right: 24px;
	z-index: 900;
	width: 54px;
	height: 54px;
	border-radius: 50%;
	background: #25D366;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	box-shadow: 0 10px 26px rgba(37, 211, 102, .35);
}

.back-to-top {
	position: fixed;
	bottom: 24px;
	left: 24px;
	z-index: 900;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--charcoal);
	color: var(--ivory);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: .95rem;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: all .35s var(--ease);
}

.back-to-top.show {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.scroll-progress {
	position: fixed;
	top: 0;
	left: 0;
	height: 2px;
	background: var(--gold);
	z-index: 1200;
	width: 0%;
}

.page-loader {
	position: fixed;
	inset: 0;
	background: var(--ivory);
	z-index: 2000;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 16px;
	transition: opacity .6s var(--ease), visibility .6s var(--ease);
}

.page-loader.hide {
	opacity: 0;
	visibility: hidden;
}

.loader-mark {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	border: 1px solid var(--gold);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gold);
	font-family: var(--font-display);
	font-size: 1.4rem;
}

.loader-mark span {
	display: inline-block;
}

.cookie-notice {
	position: fixed;
	left: 20px;
	bottom: 20px;
	right: 20px;
	max-width: 480px;
	z-index: 1300;
	background: var(--charcoal);
	color: #e3dcce;
	padding: 24px 26px;
	box-shadow: var(--shadow-1);
	transform: translateY(140%);
	transition: transform .6s var(--ease);
}

.cookie-notice.show {
	transform: translateY(0);
}

.cookie-notice p {
	color: #c7bda9;
	font-size: .84rem;
	margin-bottom: 16px;
}

.cookie-actions {
	display: flex;
	gap: 26px;
	align-items: center;
}

.newsletter-popup-backdrop {
	position: fixed;
	inset: 0;
	background: rgba(20, 18, 15, .6);
	z-index: 1400;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	opacity: 0;
	visibility: hidden;
	transition: all .4s var(--ease);
}

.newsletter-popup-backdrop.show {
	opacity: 1;
	visibility: visible;
}

.newsletter-popup {
	background: var(--ivory);
	max-width: 500px;
	width: 100%;
	padding: 60px 46px;
	text-align: center;
	position: relative;
	transform: scale(.94);
	transition: transform .4s var(--ease);
}

.newsletter-popup-backdrop.show .newsletter-popup {
	transform: scale(1);
}

.newsletter-popup .close-popup {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 32px;
	height: 32px;
	color: var(--charcoal-soft);
}

.newsletter-popup form {
	display: flex;
	gap: 0;
	margin-top: 26px;
	border-bottom: 1px solid var(--charcoal);
	padding-bottom: 10px;
}

.newsletter-popup input {
	flex: 1;
	padding: 8px 0;
	border: none;
	background: transparent;
	font-family: var(--font-body);
}

.newsletter-popup input:focus {
	outline: none;
}

.mobile-action-bar {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 950;
	background: var(--ivory);
	box-shadow: 0 -6px 24px rgba(0, 0, 0, .08);
	display: none;
}

@media (max-width:767.98px) {
	.mobile-action-bar {
		display: flex;
	}
}

.mobile-action-bar a {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	padding: 11px 4px 15px;
	font-size: .62rem;
	color: var(--charcoal);
	text-transform: uppercase;
	letter-spacing: .06em;
	font-weight: 500;
	border-right: 1px solid rgba(38, 36, 34, .1);
}

.mobile-action-bar a:last-child {
	border-right: none;
}

.mobile-action-bar a i {
	font-size: 1.05rem;
	color: var(--gold-deep);
}

.mobile-action-bar a.bar-book {
	background: var(--charcoal);
	color: var(--ivory);
}

.mobile-action-bar a.bar-book i {
	color: var(--gold-pale);
}

/* ---------- Hero availability form (glass strip, not a boxed card) ---------- */
.hero-form {
	background: rgba(250, 247, 241, .92);
	backdrop-filter: blur(10px);
	padding: 28px 34px;
	display: flex;
	flex-wrap: wrap;
	gap: 22px;
	align-items: flex-end;
}

.hero-form .field {
	flex: 1;
	min-width: 140px;
}

.hero-form label {
	display: block;
	font-size: .62rem;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--charcoal-soft);
	margin-bottom: 8px;
}

.hero-form input,
.hero-form select {
	width: 100%;
	border: none;
	border-bottom: 1px solid rgba(38, 36, 34, .28);
	background: transparent;
	padding: 6px 0;
	font-family: var(--font-body);
	font-size: .92rem;
	color: var(--charcoal);
}

.hero-form input:focus,
.hero-form select:focus {
	outline: none;
	border-color: var(--gold-deep);
}

/* legacy booking-bar used on booking.html full form */
.booking-bar {
	background: var(--white);
	border: 1px solid rgba(38, 36, 34, .1);
	padding: 34px;
}

.booking-bar label {
	font-size: .68rem;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: var(--charcoal-soft);
	font-weight: 500;
	display: block;
	margin-bottom: 8px;
}

.booking-bar .form-control,
.booking-bar .form-select {
	border: none;
	border-bottom: 1px solid rgba(38, 36, 34, .25);
	border-radius: 0;
	padding: 8px 0;
	font-size: .92rem;
	background: transparent;
}

.booking-bar .form-control:focus,
.booking-bar .form-select:focus {
	border-color: var(--gold-deep);
	box-shadow: none;
}

.form-luxe .form-control,
.form-luxe .form-select {
	border: none;
	border-bottom: 1px solid rgba(38, 36, 34, .25);
	border-radius: 0;
	padding: 10px 2px;
	background: transparent;
	font-size: .94rem;
}

.form-luxe .form-control:focus,
.form-luxe .form-select:focus {
	border-color: var(--gold-deep);
	box-shadow: none;
	outline: none;
}

.form-luxe label {
	font-size: .7rem;
	letter-spacing: .1em;
	text-transform: uppercase;
	font-weight: 500;
	color: var(--charcoal-soft);
	margin-bottom: 10px;
	display: block;
}

/* ---------- Counters ---------- */
.counter-item {
	text-align: left;
}

.counter-item .num {
	font-family: var(--font-display);
	font-size: clamp(2.4rem, 4.4vw, 3.4rem);
	color: var(--ivory);
	font-weight: 500;
}

.counter-item p {
	color: #a89f92;
	text-transform: uppercase;
	letter-spacing: .12em;
	font-size: .7rem;
	margin: 4px 0 0;
}

/* ---------- Misc ---------- */
.text-gold {
	color: var(--gold-deep) !important;
}

.bg-beige {
	background: var(--beige);
}

hr.gold-rule {
	border: none;
	height: 1px;
	background: var(--gold);
	opacity: .4;
	margin: 30px 0;
}

.badge-luxe {
	display: inline-block;
	font-size: .66rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: .14em;
	color: var(--gold-deep);
	border-bottom: 1px solid var(--gold);
	padding-bottom: 4px;
	margin-bottom: 16px;
}

.swiper-button-next.luxe-nav,
.swiper-button-prev.luxe-nav {
	width: 46px;
	height: 46px;
	background: rgba(250, 247, 241, .16);
	border-radius: 50%;
	color: #fff;
}

.swiper-button-next.luxe-nav::after,
.swiper-button-prev.luxe-nav::after {
	font-size: .9rem;
}

.swiper-pagination-bullet {
	background: #fff;
	opacity: .5;
	border-radius: 0;
	width: 18px;
	height: 2px;
}

.swiper-pagination-bullet-active {
	background: var(--gold);
	opacity: 1;
}

.cta-gradient {
	background: linear-gradient(135deg, #2c2a27, #1a1815);
}

.insta-thumb {
	width: 100%;
	height: auto;
	object-fit: cover;
}


.brand img {
	width: 110px;
}

 .carousel-indicators li.active {
    background-color: var(--gold-pale) !important;
  }
  
  #heroCarousel .carousel-item {
    transition: opacity 0.6s ease-in-out !important;
  }
  
  #heroCarousel .carousel-item.active {
    opacity: 1 !important;
  }
  
  /* Swiper Navigation & Pagination */
.swiper-button-next,
.swiper-button-prev {
  color: var(--gold);
  background: rgba(255, 255, 255, 0.9);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--gold);
  color: #fff;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 20px;
}

.swiper-pagination-bullet {
  background: rgba(0, 0, 0, 0.3);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: var(--gold);
}

@media (max-width: 768px) {
  .swiper-button-next,
  .swiper-button-prev {
    width: 36px;
    height: 36px;
  }
}

.swiper-slide {
	    max-width: 50%;
    display: inline-block;
}