/* Header */
.site-header {
	position: fixed;
	top: 0;
	width: 100%;
	background: #FFFFFF;
	border-bottom: 1px solid #EBEBEB;
	z-index: 1000;
	padding: 0;
	height: 115px;
	display: flex;
	align-items: center;
}

.site-nav {
	padding: 0 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: 100%;
	gap: 12px;
}

.site-brand { display: flex; align-items: center; height: 100%; }
.brand-link { display: flex; align-items: center; height: 100%; text-decoration: none; }

/* WP custom logo */
.custom-logo-link { display: inline-flex; align-items: center; height: 100%; padding: 0 8px; }
.custom-logo { height: 230px; width: auto; max-width: 100%; max-height: 115px; object-fit: contain; }

.brand-text {
	font-weight: 700;
	font-size: 28px;
	color: var(--black);
	letter-spacing: -0.2px;
}

/* Menu */
.nav-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #EBEBEB;
	background: #FFFFFF;
	border-radius: 10px;
	padding: 10px 12px;
	cursor: pointer;
	transition: all 0.2s;
	color: var(--dark-gray);
}
.nav-toggle:hover { border-color: var(--black); }

.nav-toggle-label { font-weight: 600; font-size: 14px; }

.nav-links-wrap { display: none; }
.nav-links {
	list-style: none;
	display: flex;
	gap: 18px;
	align-items: center;
}
.nav-links a {
	text-decoration: none;
	color: var(--dark-gray);
	font-weight: 600;
	font-size: 14px;
	transition: color 0.2s;
}
.nav-links a:hover { color: var(--black); text-decoration: underline; }

/* CTA in header */
.cta-header {
	padding: 12px 24px;
	background: var(--black);
	color: white;
	text-decoration: none;
	border-radius: 8px;
	font-weight: 600;
	font-size: 14px;
	transition: all 0.2s;
	border: none;
	cursor: pointer;
	white-space: nowrap;
}
.cta-header:hover { background: #222222; }

/* Mobile menu panel */
.nav-open .nav-links-wrap {
	position: fixed;
	top: 115px;
	left: 0;
	right: 0;
	background: #FFFFFF;
	border-bottom: 1px solid #EBEBEB;
	display: block;
	padding: 14px 20px 20px;
}
.nav-open .nav-links {
	flex-direction: column;
	align-items: flex-start;
	gap: 12px;
}

