/* ==========================================================================
   Desert Pearl – theme styles
   Page content styling lives in Elementor (global colours / fonts + widget settings).
   This file covers: base, header & navigation, mobile menu, footer helpers,
   cards hover, forms, breadcrumbs, custom cursor, accessibility helpers.
   ========================================================================== */

:root {
	--dp-navy: #000000;
	--dp-navy-2: #111111;
	--dp-gold: #D4AF37;
	--dp-gold-light: #F3DC8A;
	--dp-gold-text: #D4AF37;
	--dp-mgold: #C9A227;
	--dp-silver: #BDBDBD;
	--dp-grey: #0A0A0A;
	--dp-dark: #F5F5F5;
	--dp-body: #BDBDBD;
	--dp-line: #2A2A2A;
	--dp-cursor: #D4AF37;
	--dp-radius: 4px;
	--dp-header-h: 84px;
	--dp-font-head: "Playfair Display", Georgia, "Times New Roman", serif;
	--dp-font-accent: "Cinzel", Georgia, serif;
	--dp-font-body: "Poppins", "Segoe UI", Arial, sans-serif;
	--dp-gold-grad: linear-gradient(135deg, #F3DC8A 0%, #D4AF37 45%, #C9A227 70%, #8C6D16 100%);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html, body { max-width: 100%; overflow-x: clip; }

body {
	margin: 0;
	font-family: var(--dp-font-body);
	font-size: 16px;
	line-height: 1.7;
	color: var(--dp-body);
	background: #000;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 { font-family: var(--dp-font-head); color: #fff; line-height: 1.2; margin: 0 0 .6em; }
img, svg, video, iframe { max-width: 100%; }
img { height: auto; }
a { color: var(--dp-gold); text-underline-offset: 3px; }
a:hover { color: var(--dp-gold-light); }
address { font-style: normal; }

[id] { scroll-margin-top: calc(var(--dp-header-h) + 16px); }

/* Focus styles – visible on light and dark backgrounds. */
:focus-visible { outline: 3px solid var(--dp-gold-text); outline-offset: 3px; border-radius: 4px; }
.dp-site-header :focus-visible,
.dp-site-footer :focus-visible,
.dp-mobile-panel :focus-visible,
.dp-section--navy :focus-visible { outline-color: var(--dp-gold-light); }

.screen-reader-text {
	border: 0; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%);
	height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute !important; width: 1px; word-wrap: normal !important;
}
.skip-link:focus {
	clip: auto; clip-path: none; height: auto; width: auto; margin: 0;
	left: 12px; top: 12px; z-index: 100001; padding: 12px 18px;
	background: var(--dp-gold); color: var(--dp-navy); font-weight: 600; text-decoration: none; border-radius: 8px;
}

.dp-container { width: 100%; max-width: 1288px; margin: 0 auto; padding: 0 24px; }
@media (max-width: 767px) { .dp-container { padding: 0 16px; } }

/* ---------- Header ---------- */
.dp-site-header {
	position: sticky;
	top: 0;
	z-index: 999;
	background: var(--dp-navy);
	transition: box-shadow .25s ease;
}
.admin-bar .dp-site-header { top: 32px; }
@media (max-width: 782px) { .admin-bar .dp-site-header { top: 46px; } }
@media (max-width: 600px) { .admin-bar .dp-site-header { top: 0; } }
.dp-site-header.is-scrolled { box-shadow: 0 10px 30px rgba(0, 0, 0, .35); }

.dp-header-bar--fallback { background: var(--dp-navy); border-bottom: 1px solid rgba(255, 255, 255, .08); }
.dp-header-bar__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 76px; max-width: 1368px; }

/* Shortcode widgets inside the Elementor header should not stretch. */
.dp-header-bar .elementor-widget-shortcode { width: auto; max-width: 100%; }
.dp-header-bar .elementor-widget-shortcode:first-child { flex: 0 1 auto; min-width: 0; }
.dp-header-bar .elementor-widget-shortcode:last-child { flex: 0 0 auto; }

/* Logo – never stretched or cropped: fixed height, natural width. */
.dp-logo { display: inline-flex; align-items: center; text-decoration: none; max-width: 100%; line-height: 1; }
body .dp-logo .dp-logo__img { display: block; height: 54px; width: auto; max-width: min(300px, 100%); object-fit: contain; }
body .dp-logo--footer .dp-logo__img { height: 64px; max-width: min(320px, 100%); }
body .dp-logo--panel .dp-logo__img { height: 44px; max-width: 220px; }
.dp-logo--text .dp-logo__text {
	font-family: var(--dp-font-head); font-weight: 800; font-size: 17px; letter-spacing: .2px; line-height: 1.2;
	color: #fff; display: block; max-width: 260px;
}
.dp-logo--text:hover .dp-logo__text { color: var(--dp-gold-light); }
@media (max-width: 767px) {
	body .dp-logo .dp-logo__img { height: 44px; max-width: 200px; }
	.dp-logo--text .dp-logo__text { font-size: 15px; max-width: 200px; }
}

.dp-nav { display: flex; align-items: center; gap: 20px; }
.dp-nav__desktop { display: block; }
.dp-menu { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 2px; }
.dp-menu > li { position: relative; margin: 0; }
.dp-menu > li > a {
	position: relative;
	display: block;
	padding: 12px 12px;
	color: #fff;
	font-family: var(--dp-font-body);
	font-size: 15px;
	font-weight: 500;
	line-height: 1.2;
	text-decoration: none;
	white-space: nowrap;
	transition: color .2s ease;
}
.dp-menu > li > a::after {
	content: "";
	position: absolute;
	left: 12px; right: 12px; bottom: 4px;
	height: 2px;
	background: var(--dp-gold);
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform .25s ease;
}
.dp-menu > li > a:hover,
.dp-menu > li > a:focus-visible { color: var(--dp-gold-light); }
.dp-menu > li > a:hover::after,
.dp-menu > li > a:focus-visible::after { transform: scaleX(1); }
/* Active page indicator */
.dp-menu > li.current-menu-item > a,
.dp-menu > li.current_page_item > a,
.dp-menu > li.current-menu-ancestor > a { color: var(--dp-gold); font-weight: 600; }
.dp-menu > li.current-menu-item > a::after,
.dp-menu > li.current_page_item > a::after { transform: scaleX(1); }

body .dp-nav .dp-nav__phone {
	display: none;
	align-items: center; gap: 8px;
	color: var(--dp-silver); font-size: 14px; font-weight: 500; text-decoration: none; white-space: nowrap;
}
.dp-nav__phone .dp-icon { color: var(--dp-gold); width: 18px; height: 18px; }
body .dp-nav .dp-nav__phone:hover { color: #fff; }
@media (min-width: 1500px) { body .dp-nav .dp-nav__phone { display: inline-flex; } }

.dp-btn-cta {
	display: inline-flex; align-items: center; justify-content: center;
	padding: 12px 22px;
	min-height: 46px;
	background: var(--dp-gold);
	color: var(--dp-navy) !important;
	border: 2px solid var(--dp-gold);
	border-radius: 8px;
	font-family: var(--dp-font-body); font-size: 15px; font-weight: 600; line-height: 1.2;
	text-decoration: none; white-space: nowrap;
	transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}
.dp-btn-cta:hover { background: var(--dp-gold-light); border-color: var(--dp-gold-light); }
.dp-btn-cta--block { display: flex; width: 100%; }

body .dp-nav .dp-nav__toggle {
	display: none;
	align-items: center; justify-content: center;
	width: 46px; height: 46px; padding: 0;
	background: transparent; color: #fff;
	border: 1px solid rgba(255, 255, 255, .25); border-radius: 10px;
	cursor: pointer;
	transition: border-color .2s ease, color .2s ease;
}
body .dp-nav .dp-nav__toggle:hover { border-color: var(--dp-gold); color: var(--dp-gold); }
.dp-nav__toggle .dp-icon { width: 24px; height: 24px; }

@media (max-width: 1180px) {
	.dp-nav__desktop { display: none; }
	body .dp-nav .dp-nav__toggle { display: inline-flex; }
	.dp-nav { gap: 12px; }
}
@media (max-width: 767px) {
	.dp-nav__cta { display: none; }
}

/* ---------- Mobile off-canvas panel ---------- */
.dp-mobile-backdrop {
	position: fixed; inset: 0; z-index: 100000;
	background: rgba(0, 0, 0, .75);
	opacity: 0; transition: opacity .3s ease;
}
.dp-mobile-backdrop.is-open { opacity: 1; }
.dp-mobile-panel {
	position: fixed; top: 0; right: 0; bottom: 0; z-index: 100001;
	width: min(380px, 88vw);
	height: 100vh; height: 100dvh;
	display: flex; flex-direction: column;
	background: var(--dp-navy);
	border-left: 1px solid rgba(212, 175, 55, .35);
	box-shadow: -20px 0 60px rgba(0, 0, 0, .35);
	transform: translateX(100%);
	transition: transform .3s ease;
	overflow-y: auto;
	overscroll-behavior: contain;
}
.dp-mobile-panel.is-open { transform: translateX(0); }
.dp-mobile-panel[hidden], .dp-mobile-backdrop[hidden] { display: none; }
.dp-menu-open, .dp-menu-open body { overflow: hidden; }

.dp-mobile-panel__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 18px 20px; border-bottom: 1px solid rgba(255, 255, 255, .1); }
body .dp-mobile-panel .dp-mobile-panel__close {
	display: inline-flex; align-items: center; justify-content: center;
	width: 44px; height: 44px; flex: 0 0 44px;
	background: transparent; color: #fff; border: 1px solid rgba(255, 255, 255, .25); border-radius: 10px; cursor: pointer;
}
body .dp-mobile-panel .dp-mobile-panel__close:hover { color: var(--dp-gold); border-color: var(--dp-gold); }
.dp-mobile-panel__nav { padding: 8px 20px; flex: 1 0 auto; }
.dp-mobile-menu { list-style: none; margin: 0; padding: 0; }
.dp-mobile-menu li { border-bottom: 1px solid rgba(255, 255, 255, .08); margin: 0; }
body .dp-mobile-menu a {
	display: flex; align-items: center; justify-content: space-between;
	padding: 16px 4px; min-height: 48px;
	color: #fff; font-family: var(--dp-font-head); font-size: 17px; font-weight: 600; text-decoration: none;
}
body .dp-mobile-menu a:hover { color: var(--dp-gold-light); }
body .dp-mobile-menu .current-menu-item > a,
body .dp-mobile-menu .current_page_item > a { color: var(--dp-gold); box-shadow: inset 3px 0 0 var(--dp-gold); padding-left: 14px; }
.dp-mobile-panel__foot { padding: 20px; display: grid; gap: 14px; border-top: 1px solid rgba(255, 255, 255, .1); }
body .dp-mobile-panel .dp-mobile-panel__phone { display: inline-flex; align-items: center; gap: 8px; color: var(--dp-silver); text-decoration: none; font-weight: 500; }
.dp-mobile-panel__phone .dp-icon { color: var(--dp-gold); }

/* ---------- Main / generic content (non-Elementor fallback) ---------- */
.dp-main { display: block; min-height: 40vh; }
.dp-main:focus { outline: none; }
.dp-page-header { background: var(--dp-navy); color: var(--dp-silver); padding: 72px 0 56px; }
.dp-page-header h1 { color: #fff; font-size: clamp(30px, 5vw, 48px); margin-bottom: 12px; }
.dp-entry { padding: 56px 0 80px; }
.dp-entry .entry-content { max-width: 860px; }
.dp-post-list { display: grid; gap: 28px; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.dp-post-card { border: 1px solid var(--dp-line); border-radius: var(--dp-radius); padding: 24px; background: #fff; }
.dp-post-card h2 { font-size: 20px; }
.dp-pagination { margin-top: 40px; }
.dp-404 { text-align: center; padding: 96px 0; }

/* ---------- Elementor helpers ---------- */
/* Section label with a short gold rule. */
.dp-label .elementor-heading-title { display: inline-flex; align-items: center; gap: 10px; }
.dp-label .elementor-heading-title::before { content: ""; width: 28px; height: 2px; background: currentColor; flex: 0 0 28px; }

/* Cards: equal height, gold hover border. */
.dp-card { height: 100%; transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease; }
.dp-card:hover,
.dp-card:focus-within {
	border-color: var(--dp-gold) !important;
	box-shadow: 0 18px 40px rgba(0, 0, 0, .12);
	transform: translateY(-4px);
}
.dp-section--navy .dp-card:hover,
.dp-section--navy .dp-card:focus-within { box-shadow: 0 18px 40px rgba(0, 0, 0, .35); }
.e-con.dp-card-body { --flex-grow: 1; flex-grow: 1 !important; }
.e-con.dp-card-actions { --margin-block-start: auto; margin-top: auto !important; padding-top: 6px; }
.dp-card .dp-img img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; }
.dp-img img { display: block; }
.dp-card .elementor-widget-image { margin: 0; }

/* Icon box – keep icon aligned left when titles wrap. */
.dp-iconbox .elementor-icon-box-title { margin-top: 0; }
.dp-iconbox .elementor-icon-box-description { margin: 0; }

/* Buttons: consistent transitions + readable wrapping on narrow screens. */
.dp-btn .elementor-button { transition: background-color .2s ease, color .2s ease, border-color .2s ease; white-space: normal; text-align: center; line-height: 1.3; }
.dp-btn .elementor-button-icon svg { width: 14px; height: 14px; }
.dp-btn--link .elementor-button:hover .elementor-button-icon { transform: translateX(3px); }
.dp-btn--link .elementor-button-icon { transition: transform .2s ease; }

/* Breadcrumbs (in page heroes). */
.dp-breadcrumbs ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 6px; font-size: 14px; color: var(--dp-silver); }
.dp-breadcrumbs li { display: inline-flex; align-items: center; gap: 6px; margin: 0; }
.dp-breadcrumbs li + li::before { content: "›"; color: var(--dp-gold); }
body .dp-breadcrumbs a { color: var(--dp-gold-light); text-decoration: none; }
body .dp-breadcrumbs a:hover { text-decoration: underline; color: #fff; }
.dp-breadcrumbs [aria-current] { color: #fff; }

/* Contact list (footer + pages). */
.dp-contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.dp-contact-list li { display: flex; gap: 12px; align-items: flex-start; margin: 0; line-height: 1.55; }
.dp-contact-list__icon { flex: 0 0 20px; color: var(--dp-gold); margin-top: 2px; }
.dp-contact-list__icon .dp-icon { width: 18px; height: 18px; }
.dp-contact-list--light, .dp-contact-list--light a { color: var(--dp-navy-2); }
.dp-contact-list--light .dp-contact-list__icon { color: var(--dp-gold-text); }
body .dp-contact-list--dark, body .dp-contact-list--dark a { color: var(--dp-silver); }
.dp-contact-list a { text-decoration: none; word-break: break-word; }
body .dp-contact-list a:hover { color: var(--dp-gold-light); text-decoration: underline; }
body .dp-contact-list--light a:hover { color: var(--dp-gold-text); }
body .dp-contact-link { font-weight: 600; text-decoration: none; word-break: break-word; }
.dp-contact-link:hover { text-decoration: underline; }

/* Social icons */
.dp-social { list-style: none; margin: 0; padding: 0; display: flex; gap: 10px; }
.dp-social li { margin: 0; }
body .dp-social a, .dp-social__placeholder {
	display: inline-flex; align-items: center; justify-content: center;
	width: 40px; height: 40px; border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, .22); color: #fff;
	transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}
.dp-social__placeholder { opacity: .45; }
body .dp-social a:hover { background: var(--dp-gold); border-color: var(--dp-gold); color: var(--dp-navy); }
.dp-social .dp-icon { width: 18px; height: 18px; }

/* ---------- Footer ---------- */
.dp-site-footer { background: var(--dp-navy); color: var(--dp-silver); }
.dp-footer-heading .elementor-heading-title,
h2.dp-footer-heading { position: relative; padding-bottom: 12px; color: #fff; }
.dp-footer-heading .elementor-heading-title::after,
h2.dp-footer-heading::after { content: ""; position: absolute; left: 0; bottom: 0; width: 36px; height: 2px; background: var(--dp-gold); }
h2.dp-footer-heading { font-size: 16px; }
.dp-footer-links, .dp-legal-links { list-style: none; margin: 0; padding: 0; }
.dp-footer-links li { margin: 0 0 10px; }
body .dp-footer-links a { color: var(--dp-silver); text-decoration: none; transition: color .2s ease, padding .2s ease; }
body .dp-footer-links a:hover { color: var(--dp-gold-light); padding-left: 4px; }
body .dp-footer-links .current-menu-item > a { color: var(--dp-gold); }
.dp-footer-list .elementor-icon-list-icon svg { width: var(--e-icon-list-icon-size, 12px); height: var(--e-icon-list-icon-size, 12px); }
.dp-footer-list .elementor-icon-list-item a:hover .elementor-icon-list-text { color: var(--dp-gold-light) !important; }
.dp-legal-links { display: flex; flex-wrap: wrap; gap: 8px 20px; }
.dp-legal-links li { margin: 0; }
body .dp-legal-links a { color: var(--dp-silver); font-size: 14px; text-decoration: none; }
body .dp-legal-links a:hover { color: var(--dp-gold-light); text-decoration: underline; }
.dp-site-footer .elementor-widget-text-editor p { margin: 0 0 4px; }

.dp-footer-fallback { padding: 64px 0 0; }
.dp-footer-fallback__grid { display: grid; gap: 40px; grid-template-columns: 1.4fr 1fr 1.2fr; }
.dp-footer-fallback__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px; margin-top: 48px; padding-top: 24px; padding-bottom: 24px; border-top: 1px solid rgba(255, 255, 255, .12); font-size: 14px; }
@media (max-width: 900px) { .dp-footer-fallback__grid { grid-template-columns: 1fr; } }

/* ---------- Legal pages ---------- */
.dp-legal h2 { font-size: 22px; margin: 36px 0 12px; }
.dp-legal ul { padding-left: 1.2em; }
.dp-legal li { margin-bottom: 6px; }

/* ---------- Map ---------- */
.dp-map iframe { display: block; border: 0; border-radius: var(--dp-radius); }

/* ---------- Fluent Forms ---------- */
.dp-form-card .fluentform .ff-el-group { margin-bottom: 18px; }
.dp-form-card .fluentform .ff-el-input--label label {
	font-family: var(--dp-font-body); font-weight: 600; font-size: 14px; color: var(--dp-navy); margin-bottom: 6px;
}
.dp-form-card .fluentform .ff-el-is-required.asterisk-right label::after { color: #FF8A7A; }
.dp-form-card .fluentform .ff-el-form-control {
	width: 100%;
	min-height: 48px;
	padding: 12px 14px;
	font-family: var(--dp-font-body);
	font-size: 16px; /* prevents iOS zoom */
	color: var(--dp-dark);
	background: #0A0A0A;
	border: 1px solid #333;
	border-radius: 2px;
	transition: border-color .2s ease, box-shadow .2s ease;
}
.dp-form-card .fluentform textarea.ff-el-form-control { min-height: 130px; }
.dp-form-card .fluentform .ff-el-form-control:focus {
	border-color: var(--dp-gold-text);
	box-shadow: 0 0 0 3px rgba(212, 175, 55, .35);
	outline: none;
}
.dp-form-card .fluentform .ff-el-form-control::placeholder { color: #8A94A3; }
.dp-form-card .fluentform .ff-el-help-message { font-size: 13px; color: var(--dp-body); }
.dp-form-card .fluentform .error, .dp-form-card .fluentform .text-danger { color: #FF8A7A; font-size: 13px; margin-top: 6px; }
.dp-form-card .fluentform .ff-el-is-error .ff-el-form-control { border-color: #FF8A7A; }
.dp-form-card .fluentform .ff-el-tc label, .dp-form-card .fluentform .ff_gdpr_field + span { font-size: 14px; }
.dp-form-card .fluentform .ff-el-tc a { color: var(--dp-navy); font-weight: 600; }
.dp-form-card .fluentform .ff-btn-submit,
.dp-form-card .fluentform .dp-ff-submit {
	min-height: 52px; padding: 14px 32px;
	background: var(--dp-gold) !important; color: var(--dp-navy) !important;
	border: 2px solid var(--dp-gold) !important; border-radius: 8px !important;
	font-family: var(--dp-font-body); font-weight: 600; font-size: 16px;
	cursor: pointer;
}
.dp-form-card .fluentform .ff-btn-submit:hover { background: var(--dp-gold-light) !important; border-color: var(--dp-gold-light) !important; }
.dp-form-card .ff-message-success {
	border: 1px solid var(--dp-gold); border-left-width: 5px; border-radius: 10px;
	background: #15110A; color: var(--dp-navy); padding: 18px 20px; box-shadow: none;
}
.dp-form-card .ff-errors-in-stack { color: #FF8A7A; }
@media (max-width: 767px) {
	.dp-form-card .fluentform .ff-t-container { display: block; }
	.dp-form-card .fluentform .ff-t-cell { width: 100% !important; padding: 0 !important; }
	.dp-form-card .fluentform .ff-btn-submit { width: 100%; }
}

/* ---------- Custom circular cursor (desktop mouse only) ---------- */
.dp-cursor,
.dp-cursor-dot {
	position: fixed;
	top: 0;
	left: 0;
	pointer-events: none;
	z-index: 2147483000;
	opacity: 0;
	border-radius: 50%;
	will-change: transform;
	contain: layout style;
}
.dp-cursor {
	width: 32px;
	height: 32px;
	border: 1.5px solid var(--dp-cursor);
	background: transparent;
	box-shadow: 0 0 0 1px rgba(0, 0, 0, .08);
	transition: opacity .2s ease, width .2s ease, height .2s ease, border-color .2s ease, background-color .2s ease;
}
.dp-cursor-dot {
	width: 5px;
	height: 5px;
	background: var(--dp-cursor);
	transition: opacity .2s ease;
}
.dp-cursor.is-visible, .dp-cursor-dot.is-visible { opacity: 1; }
.dp-cursor.is-hover { width: 44px; height: 44px; border-color: var(--dp-gold-light); background: rgba(212, 175, 55, .10); box-shadow: 0 0 0 1px rgba(0, 0, 0, .55), inset 0 0 0 1px rgba(0, 0, 0, .35); }
.dp-cursor.is-down { width: 26px; height: 26px; }
/* Native cursor is hidden only once the custom pointer is active (added by JS). */
html.dp-cursor-active,
html.dp-cursor-active body,
html.dp-cursor-active a,
html.dp-cursor-active button,
html.dp-cursor-active [role="button"],
html.dp-cursor-active label,
html.dp-cursor-active .elementor-button { cursor: none; }
html.dp-cursor-active input:not([type="submit"]):not([type="button"]):not([type="checkbox"]):not([type="radio"]),
html.dp-cursor-active textarea,
html.dp-cursor-active select { cursor: auto; }
@media (hover: none), (pointer: coarse) {
	.dp-cursor, .dp-cursor-dot { display: none !important; }
	html.dp-cursor-active, html.dp-cursor-active * { cursor: auto; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
	.dp-card:hover, .dp-card:focus-within { transform: none; }
	.dp-cursor { transition: opacity .01ms; }
}

/* ---------- Print ---------- */
@media print {
	.dp-site-header, .dp-mobile-panel, .dp-mobile-backdrop, .dp-cursor, .dp-cursor-dot { display: none !important; }
}


/* ==========================================================================
   DESERT PEARL – luxury black & gold layer
   ========================================================================== */
::selection { background: var(--dp-gold); color: #000; }
:focus-visible { outline-color: var(--dp-gold); }

/* Header */
.dp-site-header { background: rgba(0, 0, 0, .92); -webkit-backdrop-filter: saturate(1.2) blur(10px); backdrop-filter: saturate(1.2) blur(10px); }
.dp-site-header .dp-header-bar { background-color: transparent !important; }
.dp-site-header.is-scrolled { box-shadow: 0 1px 0 rgba(212, 175, 55, .35), 0 18px 40px rgba(0, 0, 0, .6); }
.dp-menu > li > a { font-family: var(--dp-font-body); font-size: 13px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; padding: 14px 16px; }
.dp-menu > li > a::after { left: 16px; right: 16px; height: 1px; background: var(--dp-gold-grad); }
.dp-btn-cta {
	background: var(--dp-gold-grad); border: 1px solid var(--dp-gold); color: #000 !important; border-radius: 2px;
	font-family: var(--dp-font-body); font-size: 13px; font-weight: 600; letter-spacing: 1.6px; text-transform: uppercase;
	background-size: 200% 100%; transition: background-position .5s ease, box-shadow .3s ease;
}
.dp-btn-cta:hover { background: var(--dp-gold-grad); background-position: 100% 0; box-shadow: 0 0 24px rgba(212, 175, 55, .45); }
body .dp-nav .dp-nav__toggle { border-radius: 2px; border-color: rgba(212, 175, 55, .5); color: var(--dp-gold); }

/* Typographic logo fallback (until the official logo is uploaded) */
.dp-logo--text { flex-direction: column; align-items: flex-start; gap: 4px; }
.dp-logo--text .dp-logo__text {
	font-family: var(--dp-font-accent); font-weight: 700; font-size: 22px; letter-spacing: 4px; text-transform: uppercase; max-width: none;
	background: var(--dp-gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.dp-logo--text .dp-logo__sub { font-family: var(--dp-font-accent); font-size: 10px; letter-spacing: 4.2px; color: #fff; text-transform: uppercase; }
.dp-logo--text:hover .dp-logo__text { color: transparent; }
.dp-logo--hero { justify-content: center; }
body .dp-logo--hero .dp-logo__img { height: 150px; max-width: min(460px, 80vw); }
.dp-logo--hero.dp-logo--text { align-items: center; }
.dp-logo--hero .dp-logo__text { font-size: clamp(34px, 6vw, 64px); letter-spacing: clamp(6px, 1.2vw, 14px); }
.dp-logo--hero .dp-logo__sub { font-size: clamp(11px, 1.5vw, 15px); letter-spacing: clamp(4px, 1vw, 9px); }
.dp-logo--footer.dp-logo--text .dp-logo__text { font-size: 24px; }
@media (max-width: 767px) {
	body .dp-logo--hero .dp-logo__img { height: 100px; }
	.dp-logo--text .dp-logo__text { font-size: 17px; letter-spacing: 3px; }
	.dp-logo--text .dp-logo__sub { font-size: 8.5px; letter-spacing: 3px; }
}

/* Section labels */
.dp-label .elementor-heading-title::before { width: 36px; flex-basis: 36px; height: 1px; background: var(--dp-gold-grad); }
.elementor-widget-heading.dp-label[class*="center"] .elementor-heading-title::after,
.dp-section .elementor-widget-heading.dp-label .elementor-heading-title[style*="center"]::after { content: ""; width: 36px; height: 1px; background: var(--dp-gold-grad); }

/* Gold divider */
.dp-section .elementor-divider-separator { border-image: var(--dp-gold-grad) 1; }

/* HERO – full screen with animated gold light */
.dp-hero { position: relative; isolation: isolate; overflow: hidden; }
.dp-hero::before, .dp-gold-sweep::before {
	content: ""; position: absolute; inset: -20%; z-index: 0; pointer-events: none;
	background:
		radial-gradient(circle at 20% 30%, rgba(212, 175, 55, .16), transparent 32%),
		radial-gradient(circle at 80% 70%, rgba(201, 162, 39, .14), transparent 34%);
	animation: dp-glow 14s ease-in-out infinite alternate;
}
.dp-hero::after {
	content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; z-index: 1;
	background: linear-gradient(90deg, transparent, var(--dp-gold), transparent);
	animation: dp-line 6s ease-in-out infinite;
}
.dp-hero > .e-con-inner, .dp-gold-sweep > .e-con-inner { position: relative; z-index: 2; }
.dp-hero .dp-particles { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
@keyframes dp-glow { 0% { transform: translate3d(-3%, -2%, 0) scale(1); } 100% { transform: translate3d(3%, 2%, 0) scale(1.08); } }
@keyframes dp-line { 0%, 100% { opacity: .2; transform: scaleX(.3); } 50% { opacity: 1; transform: scaleX(1); } }

/* Gold shimmer on the hero heading */
.dp-shimmer .elementor-heading-title {
	background: linear-gradient(100deg, #fff 0%, #fff 35%, #F3DC8A 45%, #D4AF37 50%, #fff 60%, #fff 100%);
	background-size: 250% 100%; -webkit-background-clip: text; background-clip: text; color: transparent !important;
	animation: dp-shimmer 7s ease-in-out infinite;
}
@keyframes dp-shimmer { 0% { background-position: 120% 0; } 60%, 100% { background-position: -20% 0; } }

/* Scroll hint */
.dp-scroll-hint { display: inline-block; margin-top: 36px; width: 26px; height: 42px; border: 1px solid rgba(212, 175, 55, .7); border-radius: 14px; position: relative; }
.dp-scroll-hint__line { position: absolute; left: 50%; top: 8px; width: 2px; height: 8px; margin-left: -1px; background: var(--dp-gold); border-radius: 2px; animation: dp-scroll 1.8s ease-in-out infinite; }
@keyframes dp-scroll { 0% { opacity: 0; transform: translateY(0); } 40% { opacity: 1; } 100% { opacity: 0; transform: translateY(14px); } }

/* Page hero */
.dp-page-hero { position: relative; overflow: hidden; }
.dp-page-hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--dp-gold), transparent); }

/* CTA gold frame */
.dp-gold-frame > .e-con-inner { position: relative; }
.dp-gold-frame > .e-con-inner::before {
	content: ""; position: absolute; inset: -40px 0; border: 1px solid rgba(212, 175, 55, .35); pointer-events: none;
}
@media (max-width: 767px) { .dp-gold-frame > .e-con-inner::before { inset: -24px 0; } }

/* Cards */
.dp-card { position: relative; height: 100%; transition: border-color .35s ease, box-shadow .35s ease, transform .35s ease; }
.dp-card::before {
	content: ""; position: absolute; left: 0; top: 0; height: 2px; width: 0; background: var(--dp-gold-grad); z-index: 2; transition: width .5s ease;
}
.dp-card:hover, .dp-card:focus-within { border-color: rgba(212, 175, 55, .75) !important; box-shadow: 0 24px 50px rgba(0, 0, 0, .6), 0 0 0 1px rgba(212, 175, 55, .15); transform: translateY(-6px); }
.dp-card:hover::before, .dp-card:focus-within::before { width: 100%; }
.dp-card--gold { background-image: linear-gradient(160deg, rgba(212, 175, 55, .10), transparent 45%); }
.e-con.dp-card-body { --flex-grow: 1; flex-grow: 1 !important; }

/* Image zoom */
.dp-zoom { overflow: hidden; }
.dp-zoom img { width: 100%; display: block; transition: transform 1s cubic-bezier(.2, .7, .2, 1), filter .6s ease; }
.dp-card:hover .dp-zoom img, .dp-zoom:hover img, .dp-gallery__item:hover .dp-zoom img { transform: scale(1.08); filter: brightness(1.08); }
.dp-card .dp-img img, .dp-gallery__item .dp-img img { aspect-ratio: 4 / 3; object-fit: cover; }
.dp-frame { position: relative; }
.dp-frame::after { content: ""; position: absolute; inset: 14px; border: 1px solid rgba(212, 175, 55, .45); pointer-events: none; transition: inset .5s ease; }
.dp-frame:hover::after { inset: 22px; }

/* Equipment gallery hover */
.dp-gallery__item { position: relative; transition: border-color .35s ease, transform .35s ease; }
.dp-gallery__item .dp-gallery__caption {
	position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
	background: linear-gradient(0deg, rgba(0, 0, 0, .92) 0%, rgba(0, 0, 0, .55) 70%, transparent 100%);
	transform: translateY(38px); transition: transform .45s ease;
}
.dp-gallery__item .dp-gallery__caption .elementor-widget-button { opacity: 0; transition: opacity .45s ease; }
.dp-gallery__item:hover .dp-gallery__caption, .dp-gallery__item:focus-within .dp-gallery__caption { transform: translateY(0); }
.dp-gallery__item:hover .dp-gallery__caption .elementor-widget-button, .dp-gallery__item:focus-within .dp-gallery__caption .elementor-widget-button { opacity: 1; }
.dp-gallery__item:hover { border-color: var(--dp-gold) !important; transform: translateY(-4px); }
@media (hover: none) {
	.dp-gallery__item .dp-gallery__caption { transform: none; }
	.dp-gallery__item .dp-gallery__caption .elementor-widget-button { opacity: 1; }
}

/* Buttons */
.dp-btn .elementor-button { transition: background-color .3s ease, color .3s ease, border-color .3s ease, box-shadow .3s ease; }
.dp-btn--gold .elementor-button:hover { box-shadow: 0 0 26px rgba(212, 175, 55, .45); }

/* Checklists */
.dp-checklist .elementor-icon-list-item { padding: 6px 0; border-bottom: 1px solid #1d1d1d; }

/* Breadcrumbs */
.dp-breadcrumbs ol { font-family: var(--dp-font-body); letter-spacing: 1.5px; text-transform: uppercase; font-size: 12px; }

/* Footer */
.dp-site-footer { background: #000; border-top: 1px solid rgba(212, 175, 55, .35); }
.dp-footer-heading .elementor-heading-title::after, h2.dp-footer-heading::after { width: 40px; height: 1px; background: var(--dp-gold-grad); }
body .dp-social a, .dp-social__placeholder { border-radius: 2px; border-color: rgba(212, 175, 55, .45); color: var(--dp-gold); }
body .dp-social a:hover { background: var(--dp-gold); color: #000; }

/* Forms on dark */
.dp-form-card .fluentform .ff-el-input--label label { color: #fff; font-weight: 500; letter-spacing: .3px; }
.dp-form-card .fluentform .ff-el-form-control { color: #F5F5F5; }
.dp-form-card .fluentform .ff-el-form-control::placeholder { color: #7A7A7A; }
.dp-form-card .fluentform select.ff-el-form-control option { background: #111; color: #fff; }
.dp-form-card .fluentform .ff-el-form-control:focus { border-color: var(--dp-gold); box-shadow: 0 0 0 3px rgba(212, 175, 55, .25); }
.dp-form-card .fluentform .ff-el-tc label, .dp-form-card .fluentform .ff-el-tc { color: #BDBDBD; }
.dp-form-card .fluentform .ff-el-tc a { color: var(--dp-gold); }
.dp-form-card .fluentform .ff-btn-submit, .dp-form-card .fluentform .dp-ff-submit {
	background: var(--dp-gold-grad) !important; color: #000 !important; border-radius: 2px !important; text-transform: uppercase; letter-spacing: 1.5px; font-size: 14px;
}
.dp-form-card .ff-message-success { color: #F5F5F5; border-radius: 2px; }
.flatpickr-calendar { font-family: var(--dp-font-body); }

/* Generic (non-Elementor) pages on black */
.dp-page-header { background: #000; border-bottom: 1px solid rgba(212, 175, 55, .3); }
.dp-post-card { background: #111; border-color: #2A2A2A; }

/* Entrance animations: Elementor keeps elements hidden until revealed – respect reduced motion. */
@media (prefers-reduced-motion: reduce) {
	.elementor-invisible { visibility: visible !important; }
	.animated { animation: none !important; }
	.dp-hero::before, .dp-gold-sweep::before, .dp-hero::after, .dp-shimmer .elementor-heading-title, .dp-scroll-hint__line { animation: none !important; }
	.dp-card:hover, .dp-gallery__item:hover { transform: none; }
	.dp-card:hover .dp-zoom img, .dp-zoom:hover img, .dp-gallery__item:hover .dp-zoom img { transform: none; }
}

/* Keep theme UI buttons independent of Elementor's global button styles (kit applies to every <button>). */
body .dp-nav .dp-nav__toggle,
body .dp-nav .dp-nav__toggle:hover,
body .dp-nav .dp-nav__toggle:focus,
body .dp-nav .dp-nav__toggle:active,
body .dp-mobile-panel .dp-mobile-panel__close,
body .dp-mobile-panel .dp-mobile-panel__close:hover,
body .dp-mobile-panel .dp-mobile-panel__close:focus,
body .dp-mobile-panel .dp-mobile-panel__close:active { background: transparent; box-shadow: none; }
