.jd-site-header {
	background: #fff;
	border-bottom: 1px solid #e8e4df;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
	position: sticky;
	top: 0;
	width: 100%;
	z-index: 10000;
}

.jd-site-header__inner {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: space-between;
	margin: 0 auto;
	max-width: 1140px;
	padding: 1rem 1.5rem;
	position: relative;
}

.jd-site-branding {
	align-items: center;
	display: flex;
	flex: 1 1 auto;
	gap: 0.75rem;
	min-width: 0;
}

.jd-site-logo-link {
	flex-shrink: 0;
	line-height: 0;
}

.jd-site-logo {
	display: block;
	height: 74px;
	max-height: 74px;
	max-width: 60px;
	object-fit: contain;
	width: auto;
}

.jd-site-branding__text {
	min-width: 0;
}

.jd-site-title {
	margin: 0;
}

.jd-site-header .jd-site-title a {
	color: #000;
	display: inline-block;
	font-family: var(--jd-font-display);
	font-size: clamp(2.5rem, 5vw, 4.5rem);
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.05;
	text-decoration: none;
}

.jd-site-tagline {
	color: var(--jd-text-muted);
	font-size: 1rem;
	margin: 0.2rem 0 0;
}

.jd-menu-toggle {
	background: transparent;
	border: 0;
	cursor: pointer;
	display: none;
	flex-direction: column;
	gap: 5px;
	padding: 0.5rem;
}

.jd-menu-toggle__bar {
	background: #000;
	border-radius: 2px;
	display: block;
	height: 3px;
	width: 28px;
}

.jd-primary-nav__list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.25rem;
	justify-content: flex-end;
	list-style: none;
	margin: 0;
	padding: 0;
}

.jd-primary-nav__list a {
	color: var(--jd-text);
	display: block;
	font-size: 1rem;
	font-weight: 600;
	padding: 0.625rem 1rem;
	text-decoration: none;
	transition: color 0.2s ease;
}

.jd-primary-nav__list a:hover,
.jd-primary-nav__list a:focus,
.jd-primary-nav__list .current-menu-item > a,
.jd-primary-nav__list .current_page_item > a {
	color: var(--jd-primary-dark);
}

.jd-site-header.is-menu-open .jd-primary-nav {
	display: block;
}

@media (max-width: 767px) {
	.jd-site-header__inner {
		padding: 0.85rem 1rem;
	}

	.jd-site-logo {
		height: 60px;
		max-height: 60px;
		max-width: 48px;
	}

	.jd-site-title a {
		font-size: clamp(2rem, 8vw, 3rem);
	}

	.jd-menu-toggle {
		display: inline-flex;
	}

	.jd-primary-nav {
		background: var(--jd-secondary);
		border-top: 1px solid #e8e4df;
		display: none;
		flex: 1 0 100%;
		order: 3;
		padding: 0.5rem 0 0.75rem;
		width: 100%;
	}

	.jd-primary-nav__list {
		flex-direction: column;
		justify-content: flex-start;
	}

	.jd-primary-nav__list a {
		padding: 0.85rem 0.25rem;
	}
}