/*
 Theme Name:   Pelican Child
 Theme URI:    http://example.com
 Description:  Child theme for Pelican Properties
 Author:       Munawar Hussain
 Author URI:   http://example.com
 Template:     twentytwentyfive
 Version:      1.0.9
 Text Domain:  pelican-child
*/

:root {
	--gold: #c9a84c;
	--gold-l: #e6c97a;
	--dark: #0a0a0a;
	--d2: #111;
	--d3: #1a1a1a;
	--white: #f9f6f0;
	--grey: #888;
	--nh: 80px;
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
}
body {
	font-family: "Montserrat", sans-serif;
	background: var(--dark);
	color: var(--white);
	overflow-x: hidden;
	cursor: none;
}
::-webkit-scrollbar {
	width: 4px;
}
::-webkit-scrollbar-track {
	background: var(--dark);
}
::-webkit-scrollbar-thumb {
	background: var(--gold);
	border-radius: 2px;
}
a,
button,
input,
select,
textarea,
[onclick] {
	cursor: none;
}

/* ── CURSOR ── */
#cdot,
#cring,
#clabel {
	position: fixed;
	pointer-events: none;
	z-index: 99999;
	top: 0;
	left: 0;
	transform: translate(-50%, -50%);
}
#cdot {
	width: 10px;
	height: 10px;
	background: var(--gold);
	border-radius: 50%;
	transition: width .2s, height .2s, background .2s;
	mix-blend-mode: screen;
	z-index: 99999;
}
#cring {
	width: 40px;
	height: 40px;
	border: 1.5px solid rgba(201, 168, 76, 0.6);
	border-radius: 50%;
	transition: width .35s cubic-bezier(0.25, 0.46, 0.45, 0.94), height .35s,
		border-color .3s, opacity .3s;
	z-index: 99998;
}
#clabel {
	font-family: "Cormorant Garamond", serif;
	font-size: .72rem;
	font-weight: 600;
	letter-spacing: 4px;
	color: var(--gold);
	text-transform: uppercase;
	white-space: nowrap;
	opacity: 0;
	transition: opacity .3s;
	transform: translate(16px, -50%);
	z-index: 99997;
}
body.chov #cdot {
	width: 6px;
	height: 6px;
}
body.chov #cring {
	width: 64px;
	height: 64px;
	border-color: rgba(201, 168, 76, 0.9);
}
body.chov #clabel {
	opacity: 1;
}

/* ── SCROLL BAR ── */
#spbar {
	position: fixed;
	top: 0;
	left: 0;
	height: 2px;
	width: 0%;
	background: linear-gradient(90deg, var(--gold), var(--gold-l));
	z-index: 9999;
	transition: width .1s linear;
}

/* ── NAV ── */
nav {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	height: var(--nh);
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 40px;
	background: rgba(10, 10, 10, 0.92);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(201, 168, 76, 0.15);
	transition: background .3s;
}
nav.sc {
	background: rgba(10, 10, 10, 0.98);
}
.nl {
	font-family: "Cormorant Garamond", serif;
	font-size: 1.6rem;
	font-weight: 600;
	color: var(--gold);
	letter-spacing: 2px;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 10px;
}
.nl svg {
	width: 36px;
	height: 36px;
	transition: transform .6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.nl-logo {
	height: 40px;
	width: auto;
	display: block;
	object-fit: contain;
}
.nl:hover svg {
	transform: rotate(360deg);
}
.nls {
	display: flex;
	gap: 32px;
	list-style: none;
	align-items: center;
	margin: 0;
	padding: 0;
}
.nls a {
	color: var(--white);
	text-decoration: none;
	font-size: .7rem;
	font-weight: 600;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	position: relative;
	transition: color .3s;
}
.nls a::after {
	content: "";
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 0;
	height: 1px;
	background: var(--gold);
	transition: width .3s;
}
.nls a:hover {
	color: var(--gold);
}
.nls a:hover::after {
	width: 100%;
}
.ncta {
	background: var(--gold);
	color: var(--dark) !important;
	padding: 10px 24px;
	font-size: .65rem !important;
	font-weight: 700 !important;
	letter-spacing: 2px;
	border: none;
	text-decoration: none;
	transition: background .3s, transform .2s, box-shadow .3s;
	position: relative;
	overflow: hidden;
}
.ncta:hover {
	background: var(--gold-l);
	transform: translateY(-1px);
	box-shadow: 0 0 30px rgba(201, 168, 76, 0.4);
}
.hbg {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: none;
}
.hbg span {
	width: 24px;
	height: 2px;
	background: var(--gold);
	display: block;
	transition: .3s;
}

/* ── MOBILE MENU ── */
.mob {
	position: fixed;
	inset: 0;
	background: rgba(10, 10, 10, 0.97);
	z-index: 999;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 32px;
	opacity: 0;
	pointer-events: none;
	transition: opacity .3s;
}
.mob.open {
	opacity: 1;
	pointer-events: all;
}
.mob a {
	font-size: 1.2rem;
	letter-spacing: 4px;
	color: var(--white);
	text-decoration: none;
	text-transform: uppercase;
	font-weight: 600;
	transition: color .3s;
}
.mob a:hover {
	color: var(--gold);
}
.mclose {
	position: absolute;
	top: 28px;
	right: 32px;
	font-size: 1.5rem;
	color: var(--gold);
	background: none;
	border: none;
}

/* ── HERO ── */
#hero {
	height: 100vh;
	background: linear-gradient(135deg, #050505 0%, #0f0f0f 40%, #141008 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	text-align: center;
}
#pc {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
}
.fltrs {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	overflow: hidden;
}
.fltr {
	position: absolute;
	font-family: "Cormorant Garamond", serif;
	color: rgba(201, 168, 76, 0.055);
	font-size: clamp(6rem, 12vw, 14rem);
	font-weight: 600;
	animation: floatL 20s ease-in-out infinite;
	user-select: none;
}
@keyframes floatL {
	0% {
		transform: translateY(0) rotate(-5deg);
		opacity: 0.04;
	}
	50% {
		transform: translateY(-40px) rotate(5deg);
		opacity: 0.09;
	}
	100% {
		transform: translateY(0) rotate(-5deg);
		opacity: 0.04;
	}
}
.geo {
	position: absolute;
	inset: 0;
	pointer-events: none;
}
.geo::before {
	content: "";
	position: absolute;
	top: -20%;
	right: -10%;
	width: 700px;
	height: 700px;
	border: 1px solid rgba(201, 168, 76, 0.06);
	border-radius: 50%;
	animation: spin 30s linear infinite;
}
.geo::after {
	content: "";
	position: absolute;
	bottom: -20%;
	left: -10%;
	width: 500px;
	height: 500px;
	border: 1px solid rgba(201, 168, 76, 0.05);
	border-radius: 50%;
	animation: spin 40s linear infinite reverse;
}
@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}
.hcnt {
	position: relative;
	z-index: 2;
	max-width: 900px;
	padding: 0 20px;
}
.hero-logo-wrap {
	position: relative;
	display: block;
	width: 100%;
	margin: 12px auto 28px;
	pointer-events: auto;
}
.hero-logo {
	display: block;
	margin: 0 auto;
	max-width: min(94%, 520px);
	width: auto;
	height: auto;
	max-height: clamp(88px, 24vh, 260px);
	object-fit: contain;
	object-position: center;
}
.hey {
	font-size: .65rem;
	letter-spacing: 5px;
	text-transform: uppercase;
	color: var(--gold);
	font-weight: 600;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	animation: eyeIn 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
.hey::before,
.hey::after {
	content: "";
	width: 40px;
	height: 1px;
	background: var(--gold);
	opacity: 0.5;
}
@keyframes eyeIn {
	from {
		opacity: 0;
		letter-spacing: 12px;
	}
	to {
		opacity: 1;
		letter-spacing: 5px;
	}
}
.htit {
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(3.5rem, 8vw, 7rem);
	font-weight: 300;
	line-height: 1.05;
	color: var(--white);
	letter-spacing: 2px;
}
.htit em {
	font-style: italic;
	background: linear-gradient(135deg, var(--gold), var(--gold-l));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.letter {
	display: inline-block;
	opacity: 0;
	transform: translateY(60px) rotate(8deg);
	animation: ldrop .7s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
@keyframes ldrop {
	to {
		opacity: 1;
		transform: translateY(0) rotate(0);
	}
}
.hsub {
	position: relative;
	z-index: 2;
	margin: 0 auto;
	font-size: .8rem;
	letter-spacing: 3px;
	color: var(--grey);
	text-transform: uppercase;
	font-weight: 400;
	max-width: 500px;
	border-right: 2px solid var(--gold);
	animation: tblink .75s step-end infinite;
}
@keyframes tblink {
	0%,
	100% {
		border-color: var(--gold);
	}
	50% {
		border-color: transparent;
	}
}
.hbts {
	margin-top: 44px;
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
	animation: fup 1s .6s ease both;
}
@keyframes fup {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
.scrl {
	position: absolute;
	bottom: 32px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	font-size: .55rem;
	letter-spacing: 3px;
	color: var(--grey);
	text-transform: uppercase;
	animation: fup 1s 1s ease both;
}
.sline {
	width: 1px;
	height: 50px;
	background: linear-gradient(to bottom, var(--gold), transparent);
	animation: spulse 2s ease-in-out infinite;
}
@keyframes spulse {
	0%,
	100% {
		opacity: 0.3;
		transform: scaleY(1);
	}
	50% {
		opacity: 1;
		transform: scaleY(1.2);
	}
}

/* ── BUTTONS ── */
.bg {
	background: var(--gold);
	color: var(--dark);
	padding: 14px 36px;
	font-size: .65rem;
	font-weight: 700;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	text-decoration: none;
	border: none;
	display: inline-block;
	position: relative;
	overflow: hidden;
	transition: background .3s, transform .2s, box-shadow .3s;
}
.bg:hover {
	background: var(--gold-l);
	transform: translateY(-2px);
	box-shadow: 0 0 30px rgba(201, 168, 76, 0.35);
}
.bo {
	border: 1px solid var(--gold);
	color: var(--gold);
	padding: 14px 36px;
	font-size: .65rem;
	font-weight: 700;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	text-decoration: none;
	display: inline-block;
	position: relative;
	overflow: hidden;
	background: transparent;
	transition: background .3s, color .3s, transform .2s, box-shadow .3s;
}
.bo:hover {
	background: var(--gold);
	color: var(--dark);
	transform: translateY(-2px);
	box-shadow: 0 0 25px rgba(201, 168, 76, 0.2);
}
.ripple {
	position: absolute;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.25);
	transform: scale(0);
	animation: rip .6s linear;
	pointer-events: none;
}
@keyframes rip {
	to {
		transform: scale(4);
		opacity: 0;
	}
}

/* ── STATS STRIP ── */
.sstrip {
	background: var(--gold);
	display: flex;
	justify-content: space-around;
	align-items: center;
	padding: 28px 40px;
	flex-wrap: wrap;
	gap: 20px;
}
.si {
	text-align: center;
}
.sn {
	font-family: "Cormorant Garamond", serif;
	font-size: 2.2rem;
	font-weight: 600;
	color: var(--dark);
	line-height: 1;
	transition: transform .4s;
}
.sstrip:hover .sn {
	transform: scale(1.08);
}
.sl {
	font-size: .6rem;
	letter-spacing: 2px;
	font-weight: 700;
	text-transform: uppercase;
	color: rgba(10, 10, 10, 0.7);
	margin-top: 4px;
}

/* ── SECTIONS ── */
section {
	padding: 100px 40px;
}
.slbl {
	font-size: .6rem;
	letter-spacing: 5px;
	color: var(--gold);
	text-transform: uppercase;
	font-weight: 600;
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	gap: 12px;
}
.slbl::before {
	content: "";
	width: 30px;
	height: 1px;
	background: var(--gold);
}
.stit {
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(2.4rem, 5vw, 4rem);
	font-weight: 300;
	line-height: 1.1;
	color: var(--white);
}
.stit em {
	font-style: italic;
	color: var(--gold);
}
.div {
	width: 0;
	height: 1px;
	background: var(--gold);
	margin: 24px 0;
	transition: width 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) .3s;
}
.reveal.visible .div {
	width: 60px;
}
.stxt {
	color: #aaa;
	font-size: .85rem;
	line-height: 1.9;
	max-width: 600px;
}

/* ── REVEAL ── */
.reveal {
	opacity: 0;
	transform: translateY(50px);
	transition: opacity .9s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform .9s
		cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.visible {
	opacity: 1;
	transform: none;
}
.rd1 {
	transition-delay: .18s;
}
.rd2 {
	transition-delay: .36s;
}
.rd3 {
	transition-delay: .54s;
}
.reveal.visible .slbl {
	animation: lslide .7s ease both;
}
@keyframes lslide {
	from {
		opacity: 0;
		transform: translateX(-20px);
	}
	to {
		opacity: 1;
		transform: none;
	}
}

/* ── PROJECTS ── */
#projects {
	background: var(--d2);
}
.pi {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: start;
	max-width: 1200px;
	margin: 0 auto 60px;
}
.bfw {
	background: var(--d3);
	border: 1px solid rgba(201, 168, 76, 0.15);
	padding: 44px;
}
.ftit {
	font-family: "Cormorant Garamond", serif;
	font-size: 1.8rem;
	color: var(--gold);
	margin-bottom: 28px;
	font-weight: 400;
}
.fg {
	margin-bottom: 18px;
}
.fg input,
.fg select {
	width: 100%;
	padding: 14px 16px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(201, 168, 76, 0.2);
	color: var(--white);
	font-family: "Montserrat", sans-serif;
	font-size: .78rem;
	letter-spacing: .5px;
	transition: border .3s;
	outline: none;
	appearance: none;
}
.fg input:focus,
.fg select:focus {
	border-color: var(--gold);
	background: rgba(201, 168, 76, 0.04);
}
.fg input::placeholder {
	color: var(--grey);
}
.fg select option {
	background: var(--d3);
}
.fsub {
	width: 100%;
	padding: 16px;
	background: var(--gold);
	color: var(--dark);
	border: none;
	font-family: "Montserrat", sans-serif;
	font-size: .7rem;
	font-weight: 700;
	letter-spacing: 3px;
	text-transform: uppercase;
	transition: background .3s, transform .2s;
	margin-top: 8px;
	position: relative;
	overflow: hidden;
}
.fsub:hover {
	background: var(--gold-l);
	transform: translateY(-1px);
}
.pgrid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	max-width: 1200px;
	margin: 0 auto;
}
.pc {
	position: relative;
	overflow: hidden;
	aspect-ratio: 3 / 4;
	cursor: none;
	transition: transform .4s;
}
.pc:hover {
	transform: translateY(-6px);
}
.pcb {
	position: absolute;
	inset: 0;
	z-index: 0;
	transition: transform .6s;
}
.pc:hover .pcb {
	transform: scale(1.06);
}
.pm .pcb {
	background: linear-gradient(160deg, #1a1408, #2a1f00, #0d0b05);
}
.pv .pcb {
	background: linear-gradient(160deg, #0a1a0a, #0f2a15, #050d05);
}
.ph .pcb {
	background: linear-gradient(160deg, #0a0f1a, #0e1830, #040508);
}
.pci {
	position: absolute;
	inset: 0;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0.18;
}
.pci.pci-has-logo {
	opacity: 0.9;
	padding: 0;
	box-sizing: border-box;
	min-height: 0;
}
.pci.pci-logo-photo {
	opacity: 1;
	display: block;
	overflow: hidden;
}
/* Full-bleed project photos — override WP global img { max-width:100%; height:auto } and width/height attrs */
a.pc .pci.pci-has-logo img.pci-logo {
	position: absolute;
	inset: 0;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	max-height: none;
	min-width: 100%;
	min-height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	box-sizing: border-box;
	filter: drop-shadow(0 0 20px rgba(201, 168, 76, 0.12));
}
.pci.pci-logo-photo .pci-logo {
	filter: none;
}
.pco {
	position: absolute;
	inset: 0;
	z-index: 2;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 60%);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 28px;
}
.ctag {
	font-size: .55rem;
	letter-spacing: 3px;
	color: var(--gold);
	text-transform: uppercase;
	font-weight: 600;
	margin-bottom: 8px;
	display: flex;
	align-items: center;
	gap: 8px;
}
.ctag::before {
	content: "";
	width: 20px;
	height: 1px;
	background: var(--gold);
}
.cnm {
	font-family: "Cormorant Garamond", serif;
	font-size: 1.8rem;
	font-weight: 400;
	color: var(--white);
	margin-bottom: 10px;
	line-height: 1.1;
}
.cds {
	font-size: .7rem;
	color: #aaa;
	line-height: 1.6;
}
.car {
	position: absolute;
	top: 24px;
	right: 24px;
	z-index: 3;
	width: 36px;
	height: 36px;
	border: 1px solid rgba(201, 168, 76, 0.3);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gold);
	font-size: 1rem;
	transition: background .3s, border-color .3s;
}
.pc:hover .car {
	background: var(--gold);
	color: var(--dark);
	border-color: var(--gold);
}
.pc::after {
	content: "";
	position: absolute;
	top: 0;
	left: -75%;
	z-index: 4;
	width: 50%;
	height: 100%;
	background: linear-gradient(
		120deg,
		transparent,
		rgba(201, 168, 76, 0.07),
		transparent
	);
	transform: skewX(-20deg);
	pointer-events: none;
}
.pc:hover::after {
	animation: cshim .7s ease forwards;
}
@keyframes cshim {
	to {
		left: 125%;
	}
}

/* ── HOTEL ── */
#hotel {
	background: var(--dark);
}
.hinn {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}
.hinn > .reveal {
	min-width: 0;
}
.srow {
	display: flex;
	gap: 6px;
	margin: 20px 0;
}
.srow svg {
	width: 18px;
	height: 18px;
	fill: var(--gold);
}
.hvis {
	position: relative;
	aspect-ratio: 4 / 5;
	background: linear-gradient(160deg, #0a0f1a, #141e35);
	overflow: hidden;
	min-width: 0;
	width: 100%;
	max-width: 100%;
	animation: hfloat 6s ease-in-out infinite;
}
@keyframes hfloat {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-12px);
	}
}
.hvi {
	position: absolute;
	inset: 0;
	overflow: hidden;
}
.hvi .section-cover-img {
	position: absolute;
	inset: 0;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	max-height: none;
	object-fit: cover;
	object-position: center;
	display: block;
	box-sizing: border-box;
}
.hvi .section-cover-svg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	pointer-events: none;
}
.hbrd {
	position: absolute;
	inset: 12px;
	border: 1px solid rgba(201, 168, 76, 0.2);
	pointer-events: none;
	z-index: 1;
}
.hlo {
	position: absolute;
	bottom: 28px;
	left: 28px;
	z-index: 2;
	background: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(8px);
	border-left: 3px solid var(--gold);
	padding: 14px 20px;
}
.hln {
	font-family: "Cormorant Garamond", serif;
	font-size: 1.3rem;
	color: var(--white);
	font-weight: 400;
}
.hls {
	font-size: .6rem;
	color: var(--gold);
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-top: 4px;
}

/* ── ABOUT ── */
#about {
	background: var(--d2);
}
.ainn {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}
/* Let the about image column shrink; default min-width:auto uses img min-content and breaks the grid */
.ainn > .reveal {
	min-width: 0;
}
.aib {
	aspect-ratio: 4 / 5;
	background: var(--d3);
	border: 1px solid rgba(201, 168, 76, 0.12);
	position: relative;
	overflow: hidden;
	min-width: 0;
	width: 100%;
	max-width: 100%;
}
/* Override WP/theme img rules so cover image stays inside .aib */
.aib .section-cover-img {
	position: absolute;
	inset: 0;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	max-height: none;
	object-fit: contain;
	object-position: center;
	display: block;
	box-sizing: border-box;
	z-index: 0;
}
.aib .section-cover-svg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	pointer-events: none;
	z-index: 0;
}
.aa {
	position: absolute;
	top: -20px;
	right: -20px;
	width: 120px;
	height: 120px;
	border: 1px solid var(--gold);
	opacity: 0.2;
	z-index: 1;
	pointer-events: none;
}
.aa2 {
	position: absolute;
	bottom: -20px;
	left: -20px;
	width: 80px;
	height: 80px;
	border: 1px solid var(--gold);
	opacity: 0.15;
	z-index: 1;
	pointer-events: none;
}
.vg {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-top: 32px;
}
.vi {
	padding: 20px;
	border: 1px solid rgba(201, 168, 76, 0.12);
	background: rgba(201, 168, 76, 0.02);
	transition: border-color .3s, background .3s;
	position: relative;
	overflow: hidden;
}
.vi::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--gold);
	transition: width .5s ease;
}
.vi:hover {
	border-color: var(--gold);
	background: rgba(201, 168, 76, 0.05);
}
.vi:hover::before {
	width: 100%;
}
.vic {
	color: var(--gold);
	font-size: 1.4rem;
	margin-bottom: 10px;
}
.vin {
	font-size: .7rem;
	font-weight: 700;
	letter-spacing: 1px;
	margin-bottom: 6px;
}
.vid {
	font-size: .72rem;
	color: var(--grey);
	line-height: 1.6;
}

/* ── AMENITIES ── */
#amenities {
	background: var(--dark);
}
.aminn {
	max-width: 1200px;
	margin: 0 auto;
}
.amhd {
	max-width: 600px;
	margin-bottom: 60px;
}
.amg {
	position: relative;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1px;
	background: rgba(201, 168, 76, 0.1);
	border: 1px solid rgba(201, 168, 76, 0.1);
}
.ami {
	padding: 36px 28px;
	background: var(--dark);
	transition: background .3s;
	position: relative;
	overflow: hidden;
}
.ami::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: var(--gold);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .4s;
}
.ami:hover {
	background: rgba(201, 168, 76, 0.04);
}
.ami:hover::before {
	transform: scaleX(1);
}
.amico-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 76px;
	height: 76px;
	margin-bottom: 22px;
	border-radius: 50%;
	background: radial-gradient(
		120% 100% at 30% 18%,
		rgba(255, 250, 235, 0.09) 0%,
		rgba(201, 168, 76, 0.06) 38%,
		rgba(10, 10, 10, 0.65) 100%
	);
	border: 1px solid rgba(201, 168, 76, 0.38);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), inset 0 -1px 0
		rgba(0, 0, 0, 0.35), 0 6px 20px rgba(0, 0, 0, 0.45), 0 0 0 1px
		rgba(0, 0, 0, 0.35);
	transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s
		ease;
}
.amico {
	width: 40px;
	height: 40px;
	flex-shrink: 0;
	display: block;
	color: var(--gold);
	opacity: 0.88;
	filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.45));
}
.ami:hover .amico-wrap {
	border-color: rgba(230, 201, 122, 0.55);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), inset 0 -1px 0
		rgba(0, 0, 0, 0.3), 0 10px 28px rgba(0, 0, 0, 0.5), 0 0 24px
		rgba(201, 168, 76, 0.12);
	transform: translateY(-3px);
}
.ami:hover .amico {
	opacity: 1;
	filter: drop-shadow(0 0 10px rgba(201, 168, 76, 0.35))
		drop-shadow(0 2px 3px rgba(0, 0, 0, 0.5));
}
.amn {
	font-size: .75rem;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	margin-bottom: 10px;
}
.amd {
	font-size: .73rem;
	color: var(--grey);
	line-height: 1.65;
}

/* ── GALLERY ── */
#gallery {
	background: var(--d2);
}
.glinn {
	max-width: 1200px;
	margin: 0 auto;
}
.glhd {
	max-width: 600px;
	margin-bottom: 48px;
}
.glg {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: auto auto;
	gap: 8px;
}
.gli {
	overflow: hidden;
	position: relative;
	background: var(--d3);
}
.gli:first-child {
	grid-column: span 2;
	grid-row: span 2;
}
.glii {
	width: 100%;
	height: 100%;
	min-height: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform .6s;
	position: relative;
	overflow: hidden;
}
.gli:first-child .glii {
	min-height: min(52vw, 420px);
}
.gli-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}
.gli-placeholder {
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(2rem, 6vw, 3.5rem);
	color: rgba(201, 168, 76, 0.2);
	font-weight: 300;
}
.gli:hover .glii {
	transform: scale(1.05);
}
.glov {
	position: absolute;
	inset: 0;
	background: rgba(201, 168, 76, 0.08);
	opacity: 0;
	transition: opacity .3s;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	color: var(--gold);
}
.gli:hover .glov {
	opacity: 1;
}
.gli {
	transition: transform .3s ease, box-shadow .3s ease;
}
.gli:hover {
	box-shadow: 0 20px 60px rgba(201, 168, 76, 0.12);
}
.g1 {
	background: linear-gradient(135deg, #1a1205, #2a1e00);
}
.g2 {
	background: linear-gradient(135deg, #0a1a10, #0d2015);
}
.g3 {
	background: linear-gradient(135deg, #0f0f1f, #1a1a30);
}
.g4 {
	background: linear-gradient(135deg, #1a1008, #251800);
}
.g5 {
	background: linear-gradient(135deg, #0a1408, #101c10);
}
.g6 {
	background: linear-gradient(135deg, #0d0a1f, #181030);
}
.g7 {
	background: linear-gradient(135deg, #1a1205, #201500);
}

/* ── CONTACT ── */
#contact {
	background: var(--dark);
	scroll-margin-top: calc(var(--nh) + 24px);
}
.coinn {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 80px;
	align-items: start;
}
.coinfo p {
	font-size: .8rem;
	color: var(--grey);
	line-height: 1.8;
	margin-bottom: 32px;
}
.cod {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	margin-bottom: 20px;
	transition: transform .3s;
}
.cod:hover {
	transform: translateX(8px);
}
.codi {
	width: 40px;
	height: 40px;
	border: 1px solid rgba(201, 168, 76, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gold);
	flex-shrink: 0;
	font-size: .9rem;
	transition: background .3s, color .3s;
}
.cod:hover .codi {
	background: var(--gold);
	color: var(--dark);
}
.codt .lb {
	font-size: .6rem;
	letter-spacing: 2px;
	color: var(--gold);
	text-transform: uppercase;
	font-weight: 600;
}
.codt .vl {
	font-size: .8rem;
	color: var(--white);
	margin-top: 3px;
	line-height: 1.5;
}
.cfw {
	background: var(--d3);
	border: 1px solid rgba(201, 168, 76, 0.15);
	padding: 44px;
}
.fg textarea {
	width: 100%;
	padding: 14px 16px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(201, 168, 76, 0.2);
	color: var(--white);
	font-family: "Montserrat", sans-serif;
	font-size: .78rem;
	resize: vertical;
	min-height: 120px;
	transition: border .3s;
	outline: none;
}
.fg textarea:focus {
	border-color: var(--gold);
}
.fg textarea::placeholder {
	color: var(--grey);
}

/* ── FOOTER ── */
footer {
	background: #050505;
	border-top: 1px solid rgba(201, 168, 76, 0.12);
	padding: 60px 40px 30px;
}
.finn {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 40px;
	padding-bottom: 40px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.flogo {
	font-family: "Cormorant Garamond", serif;
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--gold);
	letter-spacing: 2px;
	margin-bottom: 16px;
	display: block;
	text-decoration: none;
}
.ftag {
	font-size: .75rem;
	color: var(--grey);
	line-height: 1.7;
	max-width: 260px;
}
.fsoc {
	display: flex;
	gap: 12px;
	margin-top: 24px;
}
.fsoc a {
	width: 36px;
	height: 36px;
	border: 1px solid rgba(201, 168, 76, 0.25);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gold);
	text-decoration: none;
	font-size: .8rem;
	transition: background .3s, border-color .3s;
}
.fsoc a:hover {
	background: var(--gold);
	color: var(--dark);
	border-color: var(--gold);
	animation: sbounce .4s cubic-bezier(0.36, 0.07, 0.19, 0.97);
}
@keyframes sbounce {
	0%,
	100% {
		transform: translateY(0);
	}
	30% {
		transform: translateY(-6px);
	}
	60% {
		transform: translateY(-2px);
	}
}
.fc h4 {
	font-size: .65rem;
	letter-spacing: 2.5px;
	color: var(--gold);
	text-transform: uppercase;
	font-weight: 700;
	margin-bottom: 18px;
}
.fc ul {
	list-style: none;
}
.fc ul li {
	margin-bottom: 10px;
}
.fc ul li a {
	text-decoration: none;
	color: var(--grey);
	font-size: .78rem;
	transition: color .3s;
}
.fc ul li a:hover {
	color: var(--gold);
}
.fbot {
	max-width: 1200px;
	margin: 28px auto 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: .68rem;
	color: rgba(255, 255, 255, 0.25);
	flex-wrap: wrap;
	gap: 10px;
}

/* CHATBOT */
#chat-launcher {
	position: fixed;
	bottom: 32px;
	right: 32px;
	z-index: 9000;
	width: 64px;
	height: 64px;
	background: linear-gradient(135deg, #c9a84c, #e6c97a);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: none;
	border: none;
	box-shadow: 0 8px 32px rgba(201, 168, 76, 0.45);
	animation: lpulse 3s ease-in-out infinite;
	transition: transform .3s, box-shadow .3s;
}
#chat-launcher:hover {
	transform: scale(1.1);
	box-shadow: 0 12px 48px rgba(201, 168, 76, 0.65);
	animation: none;
}
@keyframes lpulse {
	0%,
	100% {
		box-shadow: 0 8px 32px rgba(201, 168, 76, 0.45), 0 0 0 0
			rgba(201, 168, 76, 0.3);
	}
	50% {
		box-shadow: 0 8px 32px rgba(201, 168, 76, 0.45), 0 0 0 16px
			rgba(201, 168, 76, 0);
	}
}
#chat-launcher svg {
	width: 28px;
	height: 28px;
	fill: #0a0a0a;
	transition: transform .4s, opacity .3s;
}
#chat-launcher.open .chat-ico {
	opacity: 0;
	transform: scale(0) rotate(90deg);
}
#chat-launcher.open .close-ico {
	opacity: 1;
	transform: scale(1) rotate(0deg);
}
.chat-ico {
	transition: all .35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.close-ico {
	position: absolute;
	opacity: 0;
	transform: scale(0) rotate(-90deg);
	transition: all .35s cubic-bezier(0.34, 1.56, 0.64, 1);
	font-size: 1.4rem;
	font-weight: 700;
	color: #0a0a0a;
	line-height: 1;
}
.cnotif {
	position: absolute;
	top: 3px;
	right: 3px;
	width: 14px;
	height: 14px;
	background: #ff4444;
	border-radius: 50%;
	border: 2px solid #0a0a0a;
	animation: nbounce 1s ease-in-out 2s 3;
}
@keyframes nbounce {
	0%,
	100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.4);
	}
}
.cnotif.hide {
	display: none;
}
#chat-win {
	position: fixed;
	bottom: 112px;
	right: 32px;
	z-index: 8999;
	width: 400px;
	max-height: 620px;
	background: #0c0c0c;
	border: 1px solid rgba(201, 168, 76, 0.25);
	border-radius: 20px;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	box-shadow: 0 24px 80px rgba(0, 0, 0, 0.75), 0 0 0 1px
		rgba(201, 168, 76, 0.06);
	transform: scale(0.85) translateY(30px);
	opacity: 0;
	pointer-events: none;
	transform-origin: bottom right;
	transition: transform .4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity .3s ease;
}
#chat-win.open {
	transform: scale(1) translateY(0);
	opacity: 1;
	pointer-events: all;
}
.chwh {
	background: linear-gradient(135deg, #1a1408, #201a08);
	border-bottom: 1px solid rgba(201, 168, 76, 0.2);
	padding: 16px 20px;
	display: flex;
	align-items: center;
	gap: 12px;
	flex-shrink: 0;
}
.chav {
	width: 46px;
	height: 46px;
	background: linear-gradient(135deg, var(--gold), var(--gold-l));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	flex-shrink: 0;
	position: relative;
}
.chav::after {
	content: "";
	position: absolute;
	bottom: 2px;
	right: 2px;
	width: 10px;
	height: 10px;
	background: #22c55e;
	border-radius: 50%;
	border: 2px solid #0c0c0c;
	animation: onl 2s ease-in-out infinite;
}
@keyframes onl {
	0%,
	100% {
		opacity: 1;
	}
	50% {
		opacity: 0.4;
	}
}
.chni {
	flex: 1;
}
.chnm {
	font-family: "Cormorant Garamond", serif;
	font-size: 1.05rem;
	font-weight: 600;
	color: var(--gold);
	letter-spacing: .5px;
}
.chst {
	font-size: .6rem;
	color: #22c55e;
	letter-spacing: 1px;
	margin-top: 2px;
}
.chcl {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.06);
	border: none;
	color: var(--grey);
	font-size: .9rem;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background .2s, color .2s;
}
.chcl:hover {
	background: rgba(201, 168, 76, 0.15);
	color: var(--gold);
}
.chdl {
	background: rgba(201, 168, 76, 0.04);
	border-bottom: 1px solid rgba(201, 168, 76, 0.12);
	padding: 10px 14px;
	flex-shrink: 0;
}
.chdl-title {
	font-size: .58rem;
	letter-spacing: 2px;
	color: var(--grey);
	text-transform: uppercase;
	margin-bottom: 8px;
}
.chdl-row {
	display: flex;
	gap: 6px;
	flex-wrap: wrap;
}
.dlb {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 6px 11px;
	background: rgba(201, 168, 76, 0.07);
	border: 1px solid rgba(201, 168, 76, 0.22);
	color: var(--gold);
	font-size: .58rem;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	border-radius: 6px;
	transition: background .25s, border-color .25s, transform .2s, box-shadow .2s;
	white-space: nowrap;
	text-decoration: none;
	position: relative;
	overflow: hidden;
}
.dlb:hover {
	background: rgba(201, 168, 76, 0.18);
	border-color: var(--gold);
	transform: translateY(-2px);
	box-shadow: 0 4px 20px rgba(201, 168, 76, 0.2);
}
.dlb svg {
	width: 11px;
	height: 11px;
	fill: currentColor;
	flex-shrink: 0;
}
.dlb .dlprog {
	position: absolute;
	bottom: 0;
	left: 0;
	height: 2px;
	width: 0;
	background: var(--gold);
	transition: none;
}
.dlb.downloading .dlprog {
	animation: dlbar 1.5s ease forwards;
}
@keyframes dlbar {
	0% {
		width: 0;
	}
	80% {
		width: 90%;
	}
	100% {
		width: 100%;
	}
}
.chmsg {
	flex: 1;
	overflow-y: auto;
	padding: 16px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	scrollbar-width: thin;
	scrollbar-color: rgba(201, 168, 76, 0.25) transparent;
}
.chmsg::-webkit-scrollbar {
	width: 3px;
}
.chmsg::-webkit-scrollbar-thumb {
	background: rgba(201, 168, 76, 0.25);
	border-radius: 2px;
}
.msg {
	display: flex;
	gap: 8px;
	align-items: flex-end;
	animation: mslide .4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
@keyframes mslide {
	from {
		opacity: 0;
		transform: translateY(16px);
	}
	to {
		opacity: 1;
		transform: none;
	}
}
.msg.bot {
	flex-direction: row;
}
.msg.user {
	flex-direction: row-reverse;
}
.mav {
	width: 28px;
	height: 28px;
	background: linear-gradient(135deg, var(--gold), var(--gold-l));
	border-radius: 50%;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: .65rem;
	color: #0a0a0a;
	font-weight: 700;
}
.mbub {
	max-width: 80%;
	padding: 10px 14px;
	font-size: .77rem;
	line-height: 1.55;
	border-radius: 14px;
	word-break: break-word;
}
.msg.bot .mbub {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(201, 168, 76, 0.12);
	color: #ddd;
	border-bottom-left-radius: 4px;
}
.msg.user .mbub {
	background: linear-gradient(135deg, var(--gold), #b8963a);
	color: #0a0a0a;
	font-weight: 500;
	border-bottom-right-radius: 4px;
}
.mtm {
	font-size: .57rem;
	color: var(--grey);
	margin-top: 4px;
	opacity: 0.6;
}
.msg.bot .mtm {
	text-align: left;
}
.msg.user .mtm {
	text-align: right;
}
.tdots {
	display: flex;
	gap: 4px;
	padding: 2px 0;
}
.tdots span {
	width: 6px;
	height: 6px;
	background: var(--gold);
	border-radius: 50%;
	opacity: 0.4;
	animation: tdot 1.2s ease-in-out infinite;
}
.tdots span:nth-child(2) {
	animation-delay: .2s;
}
.tdots span:nth-child(3) {
	animation-delay: .4s;
}
@keyframes tdot {
	0%,
	60%,
	100% {
		transform: translateY(0);
		opacity: 0.4;
	}
	30% {
		transform: translateY(-7px);
		opacity: 1;
	}
}
.qrs {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: 8px;
}
.qr {
	padding: 5px 12px;
	background: transparent;
	border: 1px solid rgba(201, 168, 76, 0.32);
	color: var(--gold);
	font-size: .63rem;
	font-weight: 600;
	letter-spacing: .8px;
	border-radius: 20px;
	transition: background .2s, color .2s, transform .2s;
	white-space: nowrap;
}
.qr:hover {
	background: var(--gold);
	color: #0a0a0a;
	transform: translateY(-2px);
}
.chinp {
	padding: 12px 14px;
	border-top: 1px solid rgba(201, 168, 76, 0.12);
	display: flex;
	gap: 8px;
	align-items: center;
	flex-shrink: 0;
	background: rgba(0, 0, 0, 0.3);
}
#ci {
	flex: 1;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(201, 168, 76, 0.2);
	border-radius: 22px;
	padding: 10px 16px;
	color: var(--white);
	font-family: "Montserrat", sans-serif;
	font-size: .77rem;
	outline: none;
	transition: border-color .3s;
}
#ci:focus {
	border-color: rgba(201, 168, 76, 0.6);
}
#ci::placeholder {
	color: var(--grey);
}
#cs {
	width: 40px;
	height: 40px;
	background: var(--gold);
	border: none;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: background .2s, transform .2s;
}
#cs:hover {
	background: var(--gold-l);
	transform: scale(1.1);
}
#cs svg {
	width: 16px;
	height: 16px;
	fill: #0a0a0a;
}
.chpow {
	text-align: center;
	font-size: .56rem;
	color: rgba(255, 255, 255, 0.12);
	letter-spacing: 1px;
	padding: 5px 0 8px;
	flex-shrink: 0;
}
.chpow span {
	color: rgba(201, 168, 76, 0.35);
}

/* Blog / inner pages */
body.pelican-inner {
	cursor: auto;
}
body.pelican-inner a,
body.pelican-inner button,
body.pelican-inner input,
body.pelican-inner select,
body.pelican-inner textarea {
	cursor: auto;
}
.pelican-inner-main {
	padding: calc(var(--nh) + 40px) 40px 80px;
	max-width: 800px;
	margin: 0 auto;
	min-height: 60vh;
}
.pelican-inner-main .entry-title {
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(2rem, 4vw, 3rem);
	color: var(--gold);
	margin-bottom: 24px;
}
.pelican-inner-main .entry-content {
	color: #ccc;
	line-height: 1.85;
	font-size: .9rem;
}
.pelican-inner-main .entry-content a {
	color: var(--gold);
}
.pelican-blog {
	padding: calc(var(--nh) + 40px) 40px 80px;
	max-width: 900px;
	margin: 0 auto;
}
.pelican-blog article {
	border-bottom: 1px solid rgba(201, 168, 76, 0.15);
	padding: 32px 0;
}
.pelican-blog h2 a {
	color: var(--white);
	text-decoration: none;
}
.pelican-blog h2 a:hover {
	color: var(--gold);
}

/* Project detail pages */
a.pc {
	text-decoration: none;
	color: inherit;
	display: block;
}
.project-detail {
	padding-bottom: 80px;
}
.project-detail-hero {
	min-height: 46vh;
	display: flex;
	align-items: flex-end;
	padding: calc(var(--nh) + 48px) 40px 48px;
	border-bottom: 1px solid rgba(201, 168, 76, 0.12);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
}
.project-detail-hero.has-bg::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		rgba(10, 10, 10, 0.55) 0%,
		rgba(10, 10, 10, 0.88) 100%
	);
	z-index: 0;
}
.project-detail-hero.has-bg .project-detail-hero-inner {
	position: relative;
	z-index: 1;
}
.project-detail-hero-inner {
	max-width: 1400px;
	margin: 0 auto;
	width: 100%;
}
.project-hero-pm {
	background: linear-gradient(165deg, #1a1408 0%, #0d0b05 50%, #111 100%);
}
.project-hero-pv {
	background: linear-gradient(165deg, #0a1a0a 0%, #050d05 50%, #111 100%);
}
.project-hero-ph {
	background: linear-gradient(165deg, #0a0f1a 0%, #040508 50%, #111 100%);
}
.project-detail-div {
	margin-top: 20px;
}
.project-detail-wrap {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 40px 48px;
}
.project-detail-body {
	max-width: 1400px;
	margin: 0 auto;
	padding: 48px 0 0;
}
.project-detail-intro {
	font-size: .9rem;
	margin-bottom: 36px;
}
.project-detail-h2 {
	font-family: "Cormorant Garamond", serif;
	font-size: 1.6rem;
	color: var(--gold);
	margin-bottom: 20px;
	font-weight: 400;
}
.project-detail-list {
	list-style: none;
	padding: 0;
	margin: 0 0 40px;
}
.project-detail-list li {
	position: relative;
	padding: 12px 0 12px 28px;
	color: #bbb;
	font-size: .85rem;
	line-height: 1.6;
	border-bottom: 1px solid rgba(201, 168, 76, 0.08);
}
.project-detail-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 8px;
	height: 8px;
	background: var(--gold);
	opacity: 0.6;
	border-radius: 1px;
}
.project-detail-entry {
	margin-top: 8px;
	margin-bottom: 48px;
	color: #ccc;
	font-size: .88rem;
	line-height: 1.85;
}
.project-detail-entry p {
	margin-bottom: 1.1em;
}
.project-detail-entry h2,
.project-detail-entry h3,
.project-detail-entry h4 {
	font-family: "Cormorant Garamond", serif;
	color: var(--gold);
	font-weight: 400;
	margin: 1.4em 0 .6em;
}
.project-detail-entry img,
.project-detail-entry .wp-block-image img {
	max-width: 100%;
	height: auto;
	border-radius: 4px;
	border: 1px solid rgba(201, 168, 76, 0.12);
}
.project-detail-entry .wp-block-gallery {
	margin: 1.5em 0;
}
.project-detail-gallery {
	margin-top: 24px;
	padding-top: 16px;
	border-top: 1px solid rgba(201, 168, 76, 0.1);
}
.project-detail-gallery-title {
	margin-bottom: 24px;
}
.project-detail-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 18px;
}
.project-detail-figure {
	margin: 0;
	padding: 0;
}
.project-detail-img-link {
	display: block;
	overflow: hidden;
	border-radius: 6px;
	border: 1px solid rgba(201, 168, 76, 0.15);
	background: var(--d3);
	transition: border-color .3s, box-shadow .3s;
}
.project-detail-img-link:hover {
	border-color: rgba(201, 168, 76, 0.4);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}
.project-detail-img-link img {
	display: block;
	width: 100%;
	height: 240px;
	object-fit: cover;
}
/* ── Gallery placeholder cards ── */
.pdp-placeholder {
	cursor: default;
	display: flex;
	flex-direction: column;
	height: 240px;
	background: var(--d3);
	position: relative;
}
.pdp-placeholder:hover {
	border-color: rgba(201, 168, 76, 0.35);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}
.pdp-svg {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	opacity: 0.55;
	transition: opacity .3s;
}
.pdp-placeholder:hover .pdp-svg {
	opacity: 0.75;
}
.pdp-label {
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding: 10px 14px;
	border-top: 1px solid rgba(201, 168, 76, 0.15);
	background: rgba(0, 0, 0, 0.35);
}
.pdp-coming {
	font-size: .55rem;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	color: var(--gold);
	font-weight: 600;
}
.pdp-name {
	font-size: .72rem;
	color: rgba(255, 255, 255, 0.55);
	letter-spacing: .5px;
}
.project-detail-cta {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 32px;
	padding-top: 24px;
	border-top: 1px solid rgba(201, 168, 76, 0.08);
}
.pdp2-hero-ar {
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(1rem, 1.8vw, 1.4rem);
	color: rgba(255, 255, 255, 0.6);
	margin-top: 10px;
	direction: rtl;
}
.pdp2-kpi {
	margin-top: 16px;
	display: inline-flex;
	flex-direction: column;
	gap: 4px;
	padding: 10px 14px;
	border: 1px solid rgba(201, 168, 76, 0.25);
}
.pdp2-kpi-value {
	font-family: "Cormorant Garamond", serif;
	font-size: 2rem;
	line-height: 1;
	color: var(--gold);
}
.pdp2-kpi-label {
	font-size: .65rem;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.55);
}
.pdp2-specs {
	max-width: 1200px;
	margin: 0 auto 20px;
	border-top: 1px solid rgba(201, 168, 76, 0.15);
	border-bottom: 1px solid rgba(201, 168, 76, 0.15);
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}
.pdp2-spec-item {
	padding: 28px 24px;
	border-right: 1px solid rgba(201, 168, 76, 0.12);
}
.pdp2-spec-item:last-child {
	border-right: none;
}
.pdp2-spec-num {
	font-family: "Cormorant Garamond", serif;
	font-size: 2rem;
	color: var(--gold);
	line-height: 1;
}
.pdp2-spec-label {
	font-size: .62rem;
	letter-spacing: 1.8px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.75);
	margin-top: 6px;
}
.pdp2-spec-sub {
	font-size: .72rem;
	color: rgba(255, 255, 255, 0.45);
	margin-top: 4px;
}
.pdp2-overview {
	margin-top: 34px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	border: 1px solid rgba(201, 168, 76, 0.15);
}
.pdp2-overview-copy {
	padding: 40px 34px;
	border-right: 1px solid rgba(201, 168, 76, 0.12);
}
.pdp2-overview-copy .project-detail-cta {
	margin-top: 18px;
	padding-top: 18px;
}
.pdp2-overview-visual {
	min-height: 360px;
	background: var(--d3);
	position: relative;
	overflow: hidden;
}
.pdp2-overview-visual img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.pdp2-overview-ph {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, 0.35);
	font-size: .72rem;
	letter-spacing: 1.4px;
	text-transform: uppercase;
}
.pdp2-focus-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	margin: 0 0 34px;
}
.pdp2-focus-card {
	position: relative;
	padding: 24px 22px;
	background: var(--d3);
	border: 1px solid rgba(201, 168, 76, 0.12);
}
.pdp2-focus-num {
	position: absolute;
	right: 14px;
	top: 10px;
	font-family: "Cormorant Garamond", serif;
	font-size: 2.5rem;
	color: rgba(201, 168, 76, 0.14);
}
.pdp2-focus-tag {
	font-size: .55rem;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 10px;
}
.pdp2-focus-title {
	font-family: "Cormorant Garamond", serif;
	font-size: 1.5rem;
	font-weight: 400;
	color: var(--white);
	margin-bottom: 10px;
}
.pdp2-focus-desc {
	font-size: .8rem;
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.7;
}
.pdp2-focus-meta {
	margin: 14px 0 0;
	padding: 0;
	list-style: none;
}
.pdp2-focus-meta li {
	padding: 8px 0;
	font-size: .72rem;
	color: rgba(255, 255, 255, 0.5);
	border-top: 1px solid rgba(201, 168, 76, 0.08);
}
.pdp2-feature-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1px;
	background: rgba(201, 168, 76, 0.08);
	margin: 0 0 40px;
	padding: 0;
	list-style: none;
}
.pdp2-feature-item {
	position: relative;
	background: var(--d3);
	padding: 20px 18px 20px 34px;
	font-size: .78rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.66);
}
.pdp2-feature-item::before {
	content: "\2022";
	position: absolute;
	left: 18px;
	top: 22px;
	font-size: 1em;
	line-height: 1;
	color: rgba(201, 168, 76, 0.72);
}
.pdp2-villa-types {
	display: flex;
	flex-direction: column;
	gap: 44px;
	margin: 10px 0 44px;
}
.pdp2-villa-block {
	border: 1px solid rgba(201, 168, 76, 0.12);
	background: #101010;
	padding: 28px 24px;
}
.pdp2-villa-intro {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
	gap: 24px 36px;
	align-items: start;
	margin-bottom: 22px;
}
.pdp2-villa-block-head {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 16px 28px;
	align-items: start;
	margin-bottom: 0;
}
.pdp2-villa-step {
	font-family: "Cormorant Garamond", serif;
	font-size: 2rem;
	line-height: 1;
	color: rgba(201, 168, 76, 0.35);
	letter-spacing: 2px;
}
.pdp2-villa-title {
	margin-top: 6px;
	margin-bottom: 12px;
}
.pdp2-villa-desc {
	font-size: .85rem;
	line-height: 1.75;
	color: rgba(255, 255, 255, 0.72);
	margin: 0 0 14px;
}
.pdp2-villa-meta {
	margin-top: 4px;
}
.pdp2-villa-exterior {
	margin-bottom: 0;
}
.pdp2-villa-exterior-frame {
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	border: 1px solid rgba(201, 168, 76, 0.14);
	background: var(--d3);
}
.pdp2-villa-exterior-frame img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	vertical-align: middle;
}
.pdp2-villa-exterior-ph {
	aspect-ratio: 16 / 10;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 24px;
	font-size: .72rem;
	line-height: 1.65;
	letter-spacing: 0.8px;
	color: rgba(255, 255, 255, 0.42);
	border: 1px dashed rgba(201, 168, 76, 0.22);
	background: var(--d3);
}
.pdp2-villa-interior {
	border-top: 1px solid rgba(201, 168, 76, 0.1);
	padding-top: 20px;
}
.pdp2-villa-interior-title {
	font-family: "Cormorant Garamond", serif;
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.85);
	margin: 0;
}
.pdp2-villa-interior .pdp2-car-head {
	align-items: center;
	margin-bottom: 14px;
}
.pdp2-showcase--orphans .pdp2-orphan-hint {
	margin: 0 0 16px;
	font-size: .72rem;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.42);
}
.pdp2-showcase {
	margin: 6px 0 34px;
}
.pdp2-showcase-inner {
	background: #101010;
	border: 1px solid rgba(201, 168, 76, 0.12);
	padding: 20px;
}
.pdp2-showcase-inner .project-detail-h2 {
	margin-bottom: 14px;
}
.pdp2-car-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}
.pdp2-car-head .project-detail-h2 {
	margin-bottom: 10px;
}
.pdp2-car-controls {
	display: flex;
	gap: 8px;
}
.pdp2-car-btn {
	width: 34px;
	height: 34px;
	border: 1px solid rgba(201, 168, 76, 0.35);
	background: transparent;
	color: var(--gold);
	font-size: 1rem;
	line-height: 1;
	cursor: pointer;
}
.pdp2-car-btn:hover {
	background: var(--gold);
	color: var(--dark);
}
.pdp2-carousel {
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: thin;
	scrollbar-color: rgba(201, 168, 76, 0.55) rgba(255, 255, 255, 0.05);
}
.pdp2-carousel-track {
	display: flex;
	gap: 12px;
}
.pdp2-slide {
	flex: 0 0 min(420px, 78vw);
	height: 280px;
	scroll-snap-align: start;
	border: 1px solid rgba(201, 168, 76, 0.14);
	background: var(--d3);
	overflow: hidden;
	display: block;
}
.pdp2-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .45s ease;
}
.pdp2-slide:hover img {
	transform: scale(1.04);
}
.pdp2-slide-ph {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: .7rem;
	letter-spacing: 1.4px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.45);
	border: 1px dashed rgba(201, 168, 76, 0.25);
}
.pdp2-cta-band {
	margin-top: 34px;
	padding: 30px 24px;
	border: 1px solid rgba(201, 168, 76, 0.15);
	background: #101010;
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}
.pdp2-cta-band .project-detail-cta {
	margin-top: 0;
	padding-top: 0;
	border-top: none;
}
.pdp2-location {
	margin-top: 30px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	align-items: stretch;
}
.pdp2-map-ph {
	border: 1px solid rgba(201, 168, 76, 0.15);
	background: var(--d3);
	min-height: 260px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: .72rem;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.4);
}
.pelican-hp {
	position: absolute !important;
	left: -9999px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
	opacity: 0 !important;
	pointer-events: none !important;
}
body.pelican-use-tawk #chat-launcher,
body.pelican-use-tawk #chat-win {
	display: none !important;
}

@media (max-width: 480px) {
	#chat-win {
		width: calc(100vw - 20px);
		right: 10px;
		bottom: 88px;
	}
	#chat-launcher {
		right: 16px;
		bottom: 16px;
	}
}
@media (max-width: 900px) {
	.nls {
		display: none;
	}
	.hbg {
		display: flex;
	}
	.pi {
		grid-template-columns: 1fr;
	}
	.pgrid {
		grid-template-columns: 1fr;
	}
	.hinn {
		grid-template-columns: 1fr;
	}
	.ainn {
		grid-template-columns: 1fr;
	}
	.coinn {
		grid-template-columns: 1fr;
	}
	.amg {
		grid-template-columns: repeat(2, 1fr);
	}
	.glg {
		grid-template-columns: repeat(2, 1fr);
	}
	.gli:first-child {
		grid-column: span 2;
	}
	.finn {
		grid-template-columns: 1fr 1fr;
	}
	section {
		padding: 70px 24px;
	}
	nav {
		padding: 0 24px;
	}
	.project-detail-wrap {
		padding-left: 24px;
		padding-right: 24px;
	}
	.project-detail-hero {
		padding-left: 24px;
		padding-right: 24px;
	}
	.pdp2-specs {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.pdp2-overview,
	.pdp2-location {
		grid-template-columns: 1fr;
	}
	.pdp2-overview-copy {
		border-right: none;
		border-bottom: 1px solid rgba(201, 168, 76, 0.12);
	}
	.pdp2-focus-grid {
		grid-template-columns: 1fr;
	}
	.pdp2-feature-grid {
		grid-template-columns: 1fr;
	}
	.pdp2-slide {
		flex-basis: 78vw;
		height: 230px;
	}
	.pdp2-villa-intro {
		grid-template-columns: 1fr;
	}
	.pdp2-villa-block-head {
		grid-template-columns: 1fr;
	}
	.pdp2-villa-step {
		font-size: 1.5rem;
	}
}
@media (max-width: 500px) {
	.amg {
		grid-template-columns: 1fr;
	}
	.glg {
		grid-template-columns: 1fr;
	}
	.gli:first-child {
		grid-column: span 1;
	}
	.finn {
		grid-template-columns: 1fr;
	}
	.sstrip {
		padding: 24px;
	}
	.pgrid {
		gap: 16px;
	}
	.vg {
		grid-template-columns: 1fr;
	}
}
