:root {
	--forest: #1a2e1a;
	--deep-jungle: #0d1f0d;
	--moss: #3d5c2e;
	--fern: #5c7a3e;
	--sage: #8aaa6a;
	--gold: #c9a84c;
	--gold-light: #e8c97a;
	--cream: #f5eedc;
	--warm-white: #faf6ee;
	--bark: #6b4c2a;
	--sand: #d4b896;
	--glass: rgba(255, 255, 255, 0.06);
	--glass-border: rgba(255, 255, 255, 0.12);
}

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

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	font-family: 'Jost', sans-serif;
	background: var(--deep-jungle);
	color: var(--cream);
	overflow-x: hidden;
}


.nav-logo-img {
	width: auto;
	object-fit: contain;
	display: block;
	filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.5));
	transition: transform 0.3s ease;
}

nav.scrolled .nav-logo-img {
	height: 46px;
}

.nav-logo-img:hover {
	transform: scale(1.03);
}

.footer-logo-img {
	height: 64px;
	width: auto;
	object-fit: contain;
	display: block;
	margin-bottom: 0.6rem;
	filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar {
	width: 4px;
}

::-webkit-scrollbar-track {
	background: var(--deep-jungle);
}

::-webkit-scrollbar-thumb {
	background: var(--gold);
	border-radius: 2px;
}

/* ─── NAVBAR ─── */
nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 5px 5px;
	transition: all 0.5s ease;
}

nav.scrolled {
	background: rgba(13, 31, 13, 0.95);
	backdrop-filter: blur(20px);
	padding: 0.8rem 3rem;
	border-bottom: 1px solid rgba(201, 168, 76, 0.2);
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.nav-logo {
	display: flex;
	flex-direction: column;
	line-height: 1;
}

.nav-logo .wordmark {
	font-family: 'Playfair Display', serif;
	font-size: 1.3rem;
	font-weight: 700;
	color: var(--gold-light);
	letter-spacing: 0.04em;
}

.nav-logo .tagline {
	font-family: 'Jost', sans-serif;
	font-size: 0.6rem;
	font-weight: 300;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: var(--sage);
	margin-top: 2px;
}

.nav-links {
	display: flex;
	gap: 1rem;
	align-items: center;
	background: rgba(13, 31, 13, 0.5);
	padding: 10px;
}

.nav-links a {
	font-size: 0.8rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--cream);
	text-decoration: none;
	font-weight: 500;
	position: relative;
	padding-bottom: 4px;
	transition: color 0.3s;
}

.nav-links a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 1px;
	background: var(--gold);
	transition: width 0.35s ease;
}

.nav-links a:hover {
	color: var(--gold-light);
}

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

.nav-book {
	background: var(--gold);
	color: var(--deep-jungle) !important;
	padding: 0.55rem 1.4rem;
	border-radius: 2px;
	font-weight: 500 !important;
	transition: background 0.3s !important;
}

.nav-book:hover {
	background: var(--gold-light) !important;
}

.nav-book::after {
	display: none !important;
}

.hamburger {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
}

.hamburger span {
	width: 24px;
	height: 1.5px;
	background: var(--cream);
	transition: 0.3s;
}

/* ─── HERO ─── */
#hero {
	position: relative;
	height: 100vh;
	min-height: 600px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

/* hero slider */
.hero-bg {
	position: absolute;
	inset: 0;
}

.hero-slide {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0;
	transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
	opacity: 1;
}

.hero-slide::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(13, 31, 13, 0.25) 0%, rgba(13, 31, 13, 0.15) 40%, rgba(13, 31, 13, 0.72) 100%);
}

.hero-nav-dots {
	position: absolute;
	bottom: 5.5rem;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 0.5rem;
	z-index: 3;
}

.hero-nav-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.35);
	cursor: pointer;
	transition: all 0.3s;
	border: none;
}

.hero-nav-dot.active {
	background: var(--gold);
	transform: scale(1.4);
}

.hero-arrows {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	display: flex;
	justify-content: space-between;
	padding: 0 1.5rem;
	z-index: 3;
	pointer-events: none;
}

.hero-arrow {
	pointer-events: all;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: var(--cream);
	width: 44px;
	height: 44px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 1rem;
	backdrop-filter: blur(6px);
	transition: all 0.3s;
}

.hero-arrow:hover {
	background: rgba(201, 168, 76, 0.3);
	border-color: var(--gold);
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at center bottom, rgba(201, 168, 76, 0.06) 0%, transparent 65%);
}

.hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	padding: 0 1.5rem;
	max-width: 850px;
}

.hero-eyebrow {
	font-family: 'Jost', sans-serif;
	font-size: 1rem;
	letter-spacing: 0.35em;
	text-transform: uppercase;
	color: var(--gold);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	opacity: 0;
	animation: fadeUp 1s 0.4s forwards;
	padding: 5px;
	background: rgba(1, 77, 29, 0.5)
}

.hero-eyebrow::before,
.hero-eyebrow::after {
	content: '';
	width: 40px;
	height: 1px;
	background: var(--gold);
	opacity: 0.6;
}

.hero-title {
	font-family: 'Playfair Display', serif;
	font-size: clamp(1.6rem, 5vw, 4rem);
	font-weight: 700;
	line-height: 1.12;
	color: var(--warm-white);
	margin-bottom: 1.4rem;
	opacity: 0;
	animation: fadeUp 1s 0.7s forwards;
}

.hero-title em {
	font-style: italic;
	color: var(--gold-light);
}

.hero-sub {
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(1rem, 2.2vw, 1.25rem);
	font-weight: 300;
	font-style: italic;
	color: rgba(245, 238, 220, 0.8);
	max-width: 560px;
	margin: 0 auto 2.5rem;
	line-height: 1.7;
	opacity: 0;
	animation: fadeUp 1s 1s forwards;
}

.hero-ctas {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
	opacity: 0;
	animation: fadeUp 1s 1.3s forwards;
}

.btn-primary {
	background: var(--gold);
	color: var(--deep-jungle);
	padding: 0.9rem 0.2rem;
	border: none;
	border-radius: 2px;
	font-family: 'Jost', sans-serif;
	font-size: 0.75rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	font-weight: 500;
	cursor: pointer;
	text-decoration: none;
	transition: all 0.3s ease;
	display: inline-block;
	position: relative;
	overflow: hidden;
}

.btn-primary::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.5s;
}

.btn-primary:hover {
	background: var(--gold-light);
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(201, 168, 76, 0.35);
}

.btn-primary:hover::before {
	left: 100%;
}

.btn-outline {
	background: transparent;
	color: var(--cream);
	padding: 0.9rem 2.2rem;
	border: 1px solid rgba(245, 238, 220, 0.45);
	border-radius: 2px;
	font-family: 'Jost', sans-serif;
	font-size: 0.75rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	font-weight: 400;
	cursor: pointer;
	text-decoration: none;
	transition: all 0.3s ease;
	display: inline-block;
	backdrop-filter: blur(6px);
}

.btn-outline:hover {
	border-color: var(--gold);
	color: var(--gold-light);
	transform: translateY(-2px);
}

.hero-scroll {
	position: absolute;
	bottom: 0.5rem;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	opacity: 0;
	animation: fadeUp 1s 1.8s forwards;
	z-index: 2;
}

.scroll-text {
	font-size: 1rem;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: var(--sage);
}

.scroll-line {
	width: 1px;
	height: 40px;
	background: linear-gradient(to bottom, var(--gold), transparent);
	animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

	0%,
	100% {
		opacity: 0.3;
		transform: scaleY(0.7)
	}

	50% {
		opacity: 1;
		transform: scaleY(1)
	}
}

@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(28px)
	}

	to {
		opacity: 1;
		transform: translateY(0)
	}
}

/* ─── SECTION SHARED ─── */
section {
	padding: 7rem 1.5rem;
}

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

.section-label {
	font-size: 1rem;
	letter-spacing: 0.35em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 0.8rem;
	display: flex;
	align-items: center;
	gap: 0.8rem;
}

.section-label::before {
	content: '';
	width: 28px;
	height: 1px;
	background: var(--gold);
}

.section-title {
	font-family: 'Playfair Display', serif;
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 700;
	color: var(--warm-white);
	line-height: 1.2;
	margin-bottom: 1.2rem;
}

.section-title em {
	font-style: italic;
	color: var(--gold-light);
}

.section-body {
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.2;
	color: rgba(255, 255, 255, 0.9);
	max-width: 560px;
	letter-spacing: 0.05rem;
}

/* fade-in observer */
.reveal {
	opacity: 0;
	transform: translateY(36px);
	transition: all 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.reveal-left {
	opacity: 0;
	transform: translateX(-36px);
	transition: all 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-left.visible {
	opacity: 1;
	transform: translateX(0);
}

.reveal-right {
	opacity: 0;
	transform: translateX(36px);
	transition: all 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-right.visible {
	opacity: 1;
	transform: translateX(0);
}

/* ─── ABOUT ─── */
#about {
	background: var(--forest);
}

.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 5rem;
	align-items: center;
}

.about-img-wrap {
	position: relative;
	border-radius: 4px;
	overflow: hidden;
	aspect-ratio: 4/5;
}

.about-img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.about-img-badge {
	position: absolute;
	bottom: 1.8rem;
	right: -1.5rem;
	background: var(--gold);
	color: var(--deep-jungle);
	padding: 1.2rem 1.6rem;
	border-radius: 3px;
	font-family: 'Playfair Display', serif;
	text-align: center;
	line-height: 1.2;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.about-img-badge .big {
	font-size: 2.2rem;
	font-weight: 700;
	display: block;
}

.about-img-badge .small {
	font-size: 0.65rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	font-family: 'Jost', sans-serif;
}

.about-features {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
	margin-top: 2.5rem;
}

.about-feat {
	background: var(--glass);
	border: 1px solid var(--glass-border);
	border-radius: 4px;
	padding: 1.4rem;
	backdrop-filter: blur(8px);
	transition: all 0.35s ease;
}

.about-feat:hover {
	border-color: rgba(201, 168, 76, 0.35);
	transform: translateY(-4px);
}

.feat-icon {
	font-size: 1.6rem;
	margin-bottom: 0.7rem;
}

.feat-name {
	font-size: 0.8rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 0.3rem;
	font-weight: 500;
}

.feat-desc {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1rem;
	color: rgba(245, 238, 220, 0.65);
	line-height: 1.5;
}

/* ─── ACCOMMODATION ─── */
#accommodation {
	background: var(--deep-jungle);
}

.acc-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.8rem;
	margin-top: 3.5rem;
}

.acc-card {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 6px;
	overflow: hidden;
	transition: all 0.4s ease;
	position: relative;
}

.acc-card:hover {
	transform: translateY(-10px);
	border-color: rgba(201, 168, 76, 0.3);
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.acc-img {
	position: relative;
	overflow: hidden;
	aspect-ratio: 4/3;
}

.acc-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
	display: block;
}

.acc-card:hover .acc-img img {
	transform: scale(1.08);
}

.acc-badge {
	position: absolute;
	top: 1rem;
	left: 1rem;
	background: var(--gold);
	color: var(--deep-jungle);
	font-size: 0.62rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	padding: 0.3rem 0.7rem;
	border-radius: 2px;
	font-weight: 500;
}

.acc-body {
	padding: 1.6rem;
}

.acc-type {
	font-size: 0.65rem;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: var(--sage);
	margin-bottom: 0.5rem;
}

.acc-name {
	font-family: 'Playfair Display', serif;
	font-size: 1.35rem;
	color: var(--warm-white);
	margin-bottom: 0.8rem;
}

.acc-amenities {
	display: flex;
	gap: 0.8rem;
	flex-wrap: wrap;
	margin-bottom: 1.2rem;
}

.amenity {
	font-size: 0.75rem;
	color: rgba(245, 238, 220, 0.55);
	display: flex;
	align-items: center;
	gap: 0.3rem;
}

.acc-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.acc-price {
	display: flex;
	flex-direction: column;
}

.price-from {
	font-size: 0.62rem;
	letter-spacing: 0.12em;
	color: var(--sage);
	text-transform: uppercase;
}

.price-amount {
	font-family: 'Playfair Display', serif;
	font-size: 1.5rem;
	color: var(--gold);
}

.price-night {
	font-size: 0.65rem;
	color: rgba(245, 238, 220, 0.45);
}

.btn-sm {
	background: transparent;
	border: 1px solid rgba(201, 168, 76, 0.5);
	color: var(--gold);
	padding: 0.5rem 1.1rem;
	border-radius: 2px;
	font-size: 0.7rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	cursor: pointer;
	font-family: 'Jost', sans-serif;
	transition: all 0.3s;
	text-decoration: none;
	display: inline-block;
}

.btn-sm:hover {
	background: var(--gold);
	color: var(--deep-jungle);
}

/* ─── EXPERIENCES ─── */
#experiences {
	background: var(--forest);
}

.exp-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 1.2rem;
	margin-top: 3.5rem;
}

.exp-card {
	position: relative;
	border-radius: 6px;
	overflow: hidden;
	aspect-ratio: 2/3;
	cursor: pointer;
	transition: all 0.4s ease;
}

.exp-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.6s ease;
}

.exp-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.exp-card:hover img {
	transform: scale(1.1);
}

.exp-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(13, 31, 13, 0.92) 0%, rgba(13, 31, 13, 0.2) 55%, transparent 100%);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 1.4rem 1.1rem;
}

.exp-icon {
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
}

.exp-name {
	font-family: 'Playfair Display', serif;
	font-size: 1rem;
	color: var(--warm-white);
	margin-bottom: 0.3rem;
}

.exp-tag {
	font-size: 0.6rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--gold);
}

/* ─── GALLERY ─── */
#gallery {
	background: var(--deep-jungle);
}

.gallery-tabs {
	display: flex;
	gap: 0.5rem;
	margin: 2.5rem 0 2rem;
	flex-wrap: wrap;
}

.gtab {
	padding: 0.4rem 1rem;
	border-radius: 20px;
	font-size: 0.72rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	cursor: pointer;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: transparent;
	color: rgba(245, 238, 220, 0.6);
	font-family: 'Jost', sans-serif;
	transition: all 0.3s;
}

.gtab.active,
.gtab:hover {
	background: var(--gold);
	color: var(--deep-jungle);
	border-color: var(--gold);
}

.gallery-masonry {
	columns: 4;
	column-gap: 1rem;
}

.gallery-item {
	break-inside: avoid;
	margin-bottom: 1rem;
	position: relative;
	border-radius: 4px;
	overflow: hidden;
	cursor: pointer;
	transition: transform 0.3s ease;
}

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

.gallery-item img {
	width: 100%;
	display: block;
	border-radius: 4px;
}

.gallery-item-overlay {
	position: absolute;
	inset: 0;
	background: rgba(13, 31, 13, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s;
}

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

.gallery-item-overlay span {
	font-size: 1.5rem;
}

/* lightbox */
.lightbox {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 2000;
	background: rgba(0, 0, 0, 0.92);
	align-items: center;
	justify-content: center;
}

.lightbox.open {
	display: flex;
}

.lightbox img {
	max-width: 90vw;
	max-height: 90vh;
	border-radius: 4px;
	object-fit: contain;
}

.lb-close {
	position: absolute;
	top: 1.5rem;
	right: 2rem;
	font-size: 2rem;
	color: var(--cream);
	cursor: pointer;
	background: none;
	border: none;
	line-height: 1;
	transition: color 0.3s;
}

.lb-close:hover {
	color: var(--gold);
}

/* ─── DINING ─── */
#dining {
	background: linear-gradient(135deg, var(--forest) 0%, #0f1e0f 100%);
}

.dining-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 5rem;
	align-items: center;
}

.dining-img {
	position: relative;
	border-radius: 4px;
	overflow: hidden;
	aspect-ratio: 5/4;
}

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

.dining-img::before {
	content: '';
	position: absolute;
	inset: -2px;
	border: 1px solid rgba(201, 168, 76, 0.25);
	border-radius: 5px;
	z-index: 1;
	pointer-events: none;
}

.dining-dishes {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	margin-top: 2rem;
}

.dish-card {
	background: var(--glass);
	border: 1px solid var(--glass-border);
	border-radius: 4px;
	padding: 1rem;
	transition: all 0.3s;
}

.dish-card:hover {
	border-color: rgba(201, 168, 76, 0.3);
}

.dish-icon {
	font-size: 1.3rem;
	margin-bottom: 0.4rem;
}

.dish-name {
	font-family: 'Playfair Display', serif;
	font-size: 0.95rem;
	color: var(--warm-white);
	margin-bottom: 0.2rem;
}

.dish-desc {
	font-size: 0.78rem;
	color: rgba(245, 238, 220, 0.5);
	line-height: 1.5;
}

/* ─── TESTIMONIALS ─── */
#testimonials {
	background: var(--deep-jungle);
	overflow: hidden;
}

.testi-track-wrap {
	overflow: hidden;
	margin-top: 3.5rem;
}

.testi-track {
	display: flex;
	gap: 1.5rem;
	transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.testi-card {
	min-width: 360px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 6px;
	padding: 2rem;
	position: relative;
	flex-shrink: 0;
	transition: border-color 0.3s;
}

.testi-card.active {
	border-color: rgba(201, 168, 76, 0.3);
}

.testi-quote {
	font-size: 3rem;
	color: var(--gold);
	opacity: 0.4;
	line-height: 0.8;
	margin-bottom: 1rem;
	font-family: serif;
}

.testi-text {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.05rem;
	font-style: italic;
	line-height: 1.7;
	color: rgba(245, 238, 220, 0.8);
	margin-bottom: 1.5rem;
}

.testi-author {
	display: flex;
	align-items: center;
	gap: 0.8rem;
}

.testi-avatar {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid var(--gold);
}

.testi-name {
	font-size: 0.85rem;
	font-weight: 500;
	color: var(--warm-white);
}

.testi-loc {
	font-size: 0.68rem;
	color: var(--sage);
	letter-spacing: 0.1em;
}

.testi-stars {
	color: var(--gold);
	font-size: 0.8rem;
	margin-top: 0.2rem;
}

.testi-nav {
	display: flex;
	gap: 0.8rem;
	margin-top: 2rem;
}

.testi-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.15);
	cursor: pointer;
	transition: all 0.3s;
}

.testi-dot.active {
	background: var(--gold);
	transform: scale(1.3);
}

/* ─── BOOKING ─── */
#booking {
	background: linear-gradient(to bottom, var(--forest), var(--deep-jungle));
	position: relative;
	overflow: hidden;
}

#booking::before {
	content: '';
	position: absolute;
	inset: 0;
	background: url('https://images.unsplash.com/photo-1531366936337-7c912a4589a7?w=1400&q=60') center/cover no-repeat;
	opacity: 0.08;
}

.booking-box {
	position: relative;
	z-index: 1;
	background: rgba(13, 31, 13, 0.75);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(201, 168, 76, 0.2);
	border-radius: 8px;
	padding: 3.5rem;
	margin: 3.5rem auto 0;
}

.booking-form {
	display: grid;
	grid-template-columns: repeat(4, 1fr) auto;
	gap: 1rem;
	align-items: end;
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.form-group label {
	font-size: 0.65rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--sage);
	margin-top: 15px;
}

.form-group input,
.form-group select {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 3px;
	padding: 0.75rem 1rem;
	color: var(--cream);
	font-family: 'Jost', sans-serif;
	font-size: 0.88rem;
	outline: none;
	transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
	border-color: var(--gold);
}

.form-group select option {
	background: var(--forest);
	color: var(--cream);
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator {
	filter: invert(0.7);
}

/* ─── CONTACT ─── */
#contact {
	background: var(--forest);
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	margin-top: 3.5rem;
}

.contact-info {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.contact-item {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
}

.contact-icon {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: rgba(201, 168, 76, 0.12);
	border: 1px solid rgba(201, 168, 76, 0.25);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
	flex-shrink: 0;
}

.contact-item-text h4 {
	font-size: 0.72rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 0.3rem;
}

.contact-item-text p,
.contact-item-text a {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.05rem;
	color: rgba(245, 238, 220, 0.75);
	text-decoration: none;
	line-height: 1.5;
}

.whatsapp-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	background: #25D366;
	color: #fff;
	padding: 0.75rem 1.5rem;
	border-radius: 3px;
	font-size: 0.8rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-decoration: none;
	font-family: 'Jost', sans-serif;
	font-weight: 500;
	transition: all 0.3s;
	margin-top: 0.5rem;
	width: fit-content;
}

.whatsapp-btn:hover {
	background: #20bb5a;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.map-placeholder {
	border-radius: 6px;
	overflow: hidden;
	height: 320px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 1rem;
	color: var(--sage);
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.1rem;
	position: relative;
}

.map-placeholder iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: none;
	border-radius: 6px;
	opacity: 0.85;
}

/* ─── FOOTER ─── */
footer {
	background: var(--deep-jungle);
	border-top: 1px solid rgba(201, 168, 76, 0.12);
	padding: 4rem 1.5rem 2rem;
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1.5fr;
	gap: 3rem;
	max-width: 1200px;
	margin: 0 auto;
}

.footer-brand .wordmark {
	font-family: 'Playfair Display', serif;
	font-size: 1.4rem;
	color: var(--gold-light);
}

.footer-brand .tagline {
	font-size: 0.65rem;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: var(--sage);
	margin: 0.3rem 0 1rem;
}

.footer-brand p {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1rem;
	color: rgba(245, 238, 220, 0.5);
	line-height: 1.7;
	max-width: 260px;
}

.footer-social {
	display: flex;
	gap: 0.8rem;
	margin-top: 1.5rem;
}

.social-icon {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.12);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.85rem;
	color: var(--cream);
	text-decoration: none;
	transition: all 0.3s;
}

.social-icon:hover {
	border-color: var(--gold);
	color: var(--gold);
	transform: translateY(-3px);
}

.footer-col h5 {
	font-size: 0.68rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 1.2rem;
}

.footer-col ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
}

.footer-col ul li a {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1rem;
	color: rgba(245, 238, 220, 0.55);
	text-decoration: none;
	transition: color 0.3s;
}

.footer-col ul li a:hover {
	color: var(--gold-light);
}

.newsletter-input-wrap {
	display: flex;
	margin-top: 0.8rem;
}

.newsletter-input-wrap input {
	flex: 1;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-right: none;
	border-radius: 3px 0 0 3px;
	padding: 0.65rem 0.9rem;
	color: var(--cream);
	font-family: 'Jost', sans-serif;
	font-size: 0.82rem;
	outline: none;
}

.newsletter-input-wrap button {
	background: var(--gold);
	border: none;
	color: var(--deep-jungle);
	padding: 0 1rem;
	border-radius: 0 3px 3px 0;
	cursor: pointer;
	font-size: 0.9rem;
	transition: background 0.3s;
}

.newsletter-input-wrap button:hover {
	background: var(--gold-light);
}

.footer-bottom {
	max-width: 1200px;
	margin: 3rem auto 0;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
	font-size: 0.72rem;
	color: rgba(245, 238, 220, 0.3);
	letter-spacing: 0.08em;
}

/* ─── FLOATING BOOK BUTTON (mobile) ─── */
.float-book {
	display: none;
	position: fixed;
	bottom: 1.5rem;
	right: 1.5rem;
	z-index: 900;
	background: var(--gold);
	color: var(--deep-jungle);
	padding: 0.85rem 1.6rem;
	border-radius: 30px;
	font-family: 'Jost', sans-serif;
	font-size: 0.78rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	font-weight: 500;
	text-decoration: none;
	box-shadow: 0 8px 24px rgba(201, 168, 76, 0.4);
	transition: all 0.3s;
}

.float-book:hover {
	transform: translateY(-3px);
	box-shadow: 0 14px 35px rgba(201, 168, 76, 0.5);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
	.exp-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.footer-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 768px) {
	nav {
		padding: 1rem 1.2rem;
		
	}

	nav.scrolled {
		padding: 0.8rem 1.2rem;
	}

	.nav-links {
		display: none;
		position: fixed;
		inset: 0;
		top: 0;
		background: var(--deep-jungle);
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 2rem;
		z-index: 999;
	}

	.nav-links.open {
		display: flex;
	}

	.nav-links a {
		font-size: 1rem;
	}

	.hamburger {
		display: flex;
		z-index: 1001;
	}

	.about-grid,
	.dining-grid,
	.contact-grid {
		grid-template-columns: 1fr;
	}

	.about-img-badge {
		right: 1rem;
	}

	.acc-grid {
		grid-template-columns: 1fr;
	}

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

	.gallery-masonry {
		columns: 2;
	}

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

	.footer-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.float-book {
		display: flex;
	}

	section {
		padding: 5rem 1.2rem;
	}
}

@media (max-width: 480px) {
	.acc-grid {
		grid-template-columns: 1fr;
	}

	.exp-grid {
		grid-template-columns: 1fr 1fr;
	}

	.gallery-masonry {
		columns: 2;
	}

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

	.testi-card {
		min-width: 290px;
	}
}

/* ─── INSTAGRAM FEED ─── */
.insta-tile:hover img {
	transform: scale(1.08);
}

.insta-hover {
	position: absolute;
	inset: 0;
	background: rgba(13, 31, 13, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.6rem;
	opacity: 0;
	transition: opacity 0.3s;
}

.insta-tile:hover .insta-hover {
	opacity: 1;
}

@media (max-width:768px) {
	#instagram [style*="grid-template-columns:repeat(4"] {
		grid-template-columns: repeat(2, 1fr) !important;
	}
}

/* ─── SOCIAL FEED GRID ─── */
.social-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.2rem;
}

.social-tile {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 8px;
	overflow: hidden;
	text-decoration: none;
	display: block;
	transition: all 0.35s ease;
	cursor: pointer;
}

.social-tile:hover {
	transform: translateY(-6px);
	border-color: rgba(201, 168, 76, 0.35);
	box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
}

.social-tile img {
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}

.social-tile:hover img {
	transform: scale(1.07);
}

.social-tile-info {
	padding: 1rem 1.1rem 1.2rem;
}

.social-platform {
	font-size: 0.62rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--gold);
	display: block;
	margin-bottom: 0.5rem;
}

.social-tile-info p {
	font-family: 'Cormorant Garamond', serif;
	font-size: 0.95rem;
	color: rgba(245, 238, 220, 0.72);
	line-height: 1.55;
	margin-bottom: 0.7rem;
}

.social-likes {
	font-size: 0.72rem;
	color: rgba(245, 238, 220, 0.4);
	letter-spacing: 0.08em;
}

.social-tile[style*="display:none"] {
	display: none !important;
}

@media (max-width: 1024px) {
	.social-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 768px) {
	.social-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 480px) {
	.social-grid {
		grid-template-columns: 1fr;
	}
}