/* =========================================
   PERFECTLY POSH POMS
   DYNAMIC LUXURY HEADER
========================================= */

.pp-lux-header {
	position: relative;
	z-index: 99999;
	width: 100%;
	background: #050505;
	border-bottom: 1px solid #b78d4c;
}

/* =========================================
   TOP PHONE BAR
========================================= */

.pp-lux-topbar {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 8px 20px;
	background: #050505;
	border-bottom: 1px solid rgba(183, 141, 76, 0.35);
}

.pp-lux-topbar__phone {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	color: #d1b277 !important;
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.6px;
	line-height: 1.2;
	text-decoration: none !important;
	transition: color 0.25s ease;
}

.pp-lux-topbar__phone:hover {
	color: #ffffff !important;
}

/* Phone icon */

.pp-lux-topbar__phone-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	color: #d1b277;
	transform-origin: 50% 70%;
	animation: pp-phone-ring 2.8s ease-in-out infinite;
}

.pp-lux-topbar__phone-icon svg {
	display: block;
	width: 18px;
	height: 18px;
}

/* Subtle luxury ringing animation */

@keyframes pp-phone-ring {

	0%,
	78%,
	100% {
		transform: rotate(0deg);
	}

	82% {
		transform: rotate(13deg);
	}

	86% {
		transform: rotate(-11deg);
	}

	90% {
		transform: rotate(9deg);
	}

	94% {
		transform: rotate(-6deg);
	}

	97% {
		transform: rotate(3deg);
	}
}


.pp-lux-topbar a {
	color: #d1b277 !important;

	font-family: "Montserrat", Arial, sans-serif;
	font-size: 12px;
	font-weight: 600;

	letter-spacing: 1.4px;

	text-decoration: none !important;
	text-transform: uppercase;
}

.pp-lux-topbar a:hover {
	color: #ffffff !important;
}


/* =========================================
   HEADER INNER
========================================= */

.pp-lux-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: min(1450px, calc(100% - 60px));
	min-height: 104px;
	margin: 0 auto;
}


/* =========================================
   BRAND
========================================= */

.pp-lux-header__brand {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	flex: 0 0 auto;
	margin-right: 60px;
	text-decoration: none !important;
}


/* LOGO */

.pp-lux-header__logo {
	display: block;
	width: 119px;
	height: 91px;
	flex: none;
	object-fit: contain;
}


/* BUSINESS NAME */

.pp-lux-header__name {
	color: #d1b277;
	font-family: "Cormorant Garamond", Georgia, serif;
	font-size: 31px;
	font-weight: 500;
	line-height: 1;
	white-space: nowrap;
	transition: color .25s ease;
}


.pp-lux-header__brand:hover .pp-lux-header__name {
	color: #b78d4c;
}


/* =========================================
   DESKTOP NAVIGATION
========================================= */


.pp-lux-header__nav {
	margin-left: auto;
	flex: 0 1 auto;
}


.pp-lux-header__nav ul {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 46px;
	margin: 0;
	padding: 0;
	list-style: none;
}


.pp-lux-header__nav li {
	position: relative;
	margin: 0;
	padding: 0;
}


.pp-lux-header__nav a {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 104px;
	padding: 0;
	color: rgba(255,255,255,.84) !important;
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 1.25px;
	line-height: 1;
	text-decoration: none !important;
	text-transform: uppercase;
	white-space: nowrap;
	transition: color .25s ease;
}


.pp-lux-header__nav a:hover {
	color: #d1b277 !important;
}


/* =========================================
   ACTIVE DESKTOP MENU
========================================= */

.pp-lux-header__nav .current-menu-item > a,
.pp-lux-header__nav .current_page_item > a,
.pp-lux-header__nav .current-menu-ancestor > a,
.pp-lux-header__nav .current_page_ancestor > a {
	color: #d1b277 !important;
}


.pp-lux-header__nav .current-menu-item > a::after,
.pp-lux-header__nav .current_page_item > a::after,
.pp-lux-header__nav .current-menu-ancestor > a::after,
.pp-lux-header__nav .current_page_ancestor > a::after {

	content: "";
	position: absolute;
	left: 50%;
	bottom: 27px;
	width: 34px;
	height: 2px;
	background: #b78d4c;
	transform: translateX(-50%);
}


/* =========================================
   DESKTOP DROPDOWN
========================================= */

.pp-lux-header__nav .sub-menu {

	position: absolute;
	top: 100%;
	left: 50%;
	z-index: 9999;
	display: block;
	min-width: 220px;
	margin: 0;
	padding: 8px 0;
	opacity: 0;
	visibility: hidden;
	background: #080808;
	border: 1px solid rgba(183,141,76,.4);
	transform: translateX(-50%) translateY(10px);
	transition:
		opacity .25s ease,
		visibility .25s ease,
		transform .25s ease;
}


.pp-lux-header__nav li:hover > .sub-menu,
.pp-lux-header__nav li:focus-within > .sub-menu {

	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
}


.pp-lux-header__nav .sub-menu li {
	display: block;
	width: 100%;
}


.pp-lux-header__nav .sub-menu a {

	display: block;
	width: 100%;
	min-height: auto;
	padding: 14px 20px;
	color: rgba(255,255,255,.78) !important;
	font-size: 9px;
	white-space: nowrap;
}


.pp-lux-header__nav .sub-menu a:hover {
	color: #d1b277 !important;
	background: rgba(183,141,76,.07);
}


.pp-lux-header__nav .sub-menu a::after {
	display: none !important;
}


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

.pp-lux-header__toggle {

	display: none;
	position: relative;
	z-index: 999999;
	width: 44px;
	height: 44px;
	padding: 8px;
	flex: none;
	background: transparent;
	border: 1px solid rgba(183,141,76,.7);
	cursor: pointer;
}


.pp-lux-header__toggle span {

	display: block;
	width: 100%;
	height: 1px;
	margin: 6px 0;
	background: #d1b277;
	transition:
		transform .25s ease,
		opacity .25s ease;
}


/* Hamburger → X */

.pp-lux-header__toggle.is-open span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}


.pp-lux-header__toggle.is-open span:nth-child(2) {
	opacity: 0;
}


.pp-lux-header__toggle.is-open span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}


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

.pp-lux-header__mobile {

	display: none !important;
	position: relative;
	z-index: 99998;
	width: 100%;
	background: #050505;
	border-top: 1px solid rgba(183,141,76,.3);
}


.pp-lux-header__mobile.is-open {
	display: block !important;
}


.pp-lux-header__mobile nav {
	width: 100%;
}


.pp-lux-header__mobile ul {

	display: block !important;
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
}


.pp-lux-header__mobile li {

	display: block;
	width: 100%;
	margin: 0;
	padding: 0;
}


.pp-lux-header__mobile a {

	display: block;
	width: 100%;
	padding: 17px 24px;
	color: rgba(255,255,255,.88) !important;
	background: #050505;
	border-bottom: 1px solid rgba(255,255,255,.07);
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 1.3px;
	line-height: 1.4;
	text-decoration: none !important;
	text-transform: uppercase;
	transition:
		color .25s ease,
		background-color .25s ease;
}


.pp-lux-header__mobile a:hover {
	color: #d1b277 !important;
	background: rgba(183,141,76,.07);
}


/* MOBILE ACTIVE */

.pp-lux-header__mobile .current-menu-item > a,
.pp-lux-header__mobile .current_page_item > a,
.pp-lux-header__mobile .current-menu-ancestor > a,
.pp-lux-header__mobile .current_page_ancestor > a {

	color: #d1b277 !important;
	background: rgba(183,141,76,.07);
}


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

.pp-lux-header__mobile .sub-menu {
	display: block !important;
	width: 100%;
	margin: 0;
	padding: 0;
	background: #0a0a0a;
}


.pp-lux-header__mobile .sub-menu a {
	padding-left: 42px;
	color: rgba(255,255,255,.68) !important;
	font-size: 10px;
}


.pp-lux-header__mobile .sub-menu a:hover {
	color: #d1b277 !important;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1050px) {
	.pp-lux-header__inner {
		width: calc(100% - 40px);

	}


	.pp-lux-header__nav ul {
		gap: 28px;

	}


	.pp-lux-header__name {
		font-size: 27px;

	}


	.pp-lux-header__logo {
		width: 77px;
		height: 62px;

	}

}


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

@media (max-width: 850px) {

	.pp-lux-header__inner {
		width: calc(100% - 30px);
		min-height: 82px;

	}


	/* Hide desktop navigation */

	.pp-lux-header__nav {
		display: none !important;

	}


	/* Show hamburger */

	.pp-lux-header__toggle {
		display: block !important;

	}


	.pp-lux-header__logo {
		width: 77px;
		height: 54px;

	}


	.pp-lux-header__name {
		font-size: 25px;

	}

	.pp-lux-topbar {
		padding: 9px 15px;
	}

	.pp-lux-topbar__phone {
		font-size: 11px;
		letter-spacing: 0.5px;
	}

	.pp-lux-topbar__phone-icon {
		width: 19px;
		height: 19px;
	}

	.pp-lux-topbar__phone-icon svg {
		width: 17px;
		height: 17px;
	}

}

/* Respect reduced-motion preference */

@media (prefers-reduced-motion: reduce) {

	.pp-lux-topbar__phone-icon {
		animation: none;
	}
}

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

@media (max-width: 480px) {

	.pp-lux-header__inner {
		width: calc(100% - 24px);
		min-height: 76px;

	}


	.pp-lux-header__brand {
		gap: 8px;

	}


	.pp-lux-header__logo {
		width: 77px;
		height: 48px;

	}


	.pp-lux-header__name {
		font-size: 20px;

	}


	.pp-lux-header__toggle {

		width: 40px;
		height: 40px;
		padding: 7px;

	}

}


@media (max-width: 767px) {

	.pp-lux-topbar {
		min-height: 32px;
		padding: 5px 10px;
	}

	.pp-lux-topbar a {
		font-size: 12px;
		letter-spacing: 1px;
	}

}
