/* DP Top Bar — utility strip above the site header.
   Phone left · socials right · gold accent on hover.
   Desktop: single row. Mobile (≤700px): stacked + centered. */

.dp-topbar {
	--dp-tb-bg: #0d0d0d;
	--dp-tb-text: #ffffff;
	--dp-tb-gold: #c9a445;
	--dp-tb-gold-soft: rgba(201, 164, 69, 0.14);
	background: var(--dp-tb-bg);
	border-bottom: 1px solid rgba(201, 164, 69, 0.28);
	position: relative;
	z-index: 110;
}

.dp-topbar__inner {
	/* full-bleed like the nav below it — phone hugs the same left inset
	   as the MENU toggle, socials mirror it on the right */
	padding: 8px 40px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.dp-topbar__icon {
	width: 19px;
	height: 19px;
	display: block;
}

/* ── phone (left) ── */
.dp-topbar__phone {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-height: 44px;
	padding: 0 4px;
	color: var(--dp-tb-text);
	text-decoration: none;
	font-size: 17px;
	font-weight: 600;
	letter-spacing: 0.04em;
	touch-action: manipulation;
	cursor: pointer;
	transition: color 0.2s ease-out;
}

.dp-topbar__phone .dp-topbar__icon {
	color: var(--dp-tb-gold);
	transition: transform 0.2s ease-out;
}

.dp-topbar__phone-number {
	position: relative;
}

/* gold underline slides in under the number */
.dp-topbar__phone-number::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -3px;
	height: 2px;
	background: var(--dp-tb-gold);
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform 0.25s ease-out;
}

.dp-topbar__phone:hover,
.dp-topbar__phone:focus-visible {
	color: var(--dp-tb-gold);
}

.dp-topbar__phone:hover .dp-topbar__phone-number::after,
.dp-topbar__phone:focus-visible .dp-topbar__phone-number::after {
	transform: scaleX(1);
}

.dp-topbar__phone:hover .dp-topbar__icon {
	transform: rotate(-8deg) scale(1.08);
}

/* ── socials (right) ── */
.dp-topbar__social {
	display: flex;
	align-items: center;
	gap: 10px;
}

.dp-topbar__social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	color: var(--dp-tb-text);
	touch-action: manipulation;
	cursor: pointer;
	transition: color 0.2s ease-out, background-color 0.2s ease-out, transform 0.2s ease-out;
}

.dp-topbar__social-link:hover,
.dp-topbar__social-link:focus-visible {
	color: var(--dp-tb-gold);
	background-color: var(--dp-tb-gold-soft);
	transform: translateY(-2px);
}

/* The site's a11y layer underlines every link; in this utility strip the
   icon + weight + gold hover carry the affordance, and the animated hover
   underline replaces the static one. */
.dp-topbar a,
.dp-topbar a:hover,
.dp-topbar a:focus-visible {
	text-decoration: none !important;
}

/* Accessibility Checker's "opens new window" indicator on the social links:
   keep the affordance, tuck it into the circle's corner as a small gold tick
   instead of a tacked-on tail. */
.dp-topbar__social-link {
	position: relative;
}

.dp-topbar__social-link [class*="edac-nww"] {
	position: absolute;
	top: 1px;
	right: 0;
	width: auto !important;
	font-size: 9px !important;
	line-height: 1;
	color: var(--dp-tb-gold);
	opacity: 0.9;
}

/* ── keyboard focus ── */
.dp-topbar a:focus-visible {
	outline: 2px solid var(--dp-tb-gold);
	outline-offset: 2px;
	border-radius: 4px;
}

.dp-topbar__social-link:focus-visible {
	border-radius: 50%;
}

/* ── mobile: stack + center, room to breathe ── */
@media (max-width: 700px) {
	.dp-topbar__inner {
		flex-direction: column;
		justify-content: center;
		gap: 6px;
		padding: 14px 20px 12px;
	}

	.dp-topbar__phone {
		font-size: 18px;
	}
}

/* ── reduced motion: keep the color cue, drop the movement ── */
@media (prefers-reduced-motion: reduce) {
	.dp-topbar__phone,
	.dp-topbar__phone .dp-topbar__icon,
	.dp-topbar__phone-number::after,
	.dp-topbar__social-link {
		transition: none;
	}

	.dp-topbar__phone:hover .dp-topbar__icon,
	.dp-topbar__social-link:hover {
		transform: none;
	}
}

/* Stacked-header logo: when the header collapses (tablet/mobile), the logo
   widget goes full-width and its image hangs left — center it to match the
   centered MENU toggle above. In the desktop row the widget hugs the image,
   so this rule is a no-op there. Move into the header template's responsive
   alignment on the redesign round, then drop. */
@media (max-width: 1280px) {
	[data-elementor-type="header"] .elementor-element-49d83d9 {
		/* the widget shrink-wraps its image, so auto margins (not
		   text-align) are what center it inside the flex container */
		margin-left: auto !important;
		margin-right: auto !important;
		text-align: center !important;
	}
}

/* Retire the legacy phone button in the nav (Elementor widget 1fc21d6) —
   superseded by this strip. Delete the widget in the header template on the
   next Elementor design round, then drop this rule. */
.elementor-element-1fc21d6 {
	display: none !important;
}
