/**
 * Site header
 */

.site-header {
	position: relative;
	z-index: 1000;
	width: 100%;
	background: #fff;
	border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.site-header.is-sticky {
	position: sticky;
	top: 0;
}

.site-header.is-scrolled {
	box-shadow: 0 8px 30px rgba(17, 17, 17, 0.08);
}

.header-container {
	width: 100%;
	max-width: none;
	margin: 0 auto;
	padding-right: clamp(1.25rem, 4vw, 5rem);
	padding-left: clamp(1.25rem, 4vw, 5rem);
}

.header-inner {
	display: flex;
	align-items: center;
	width: 100%;
	min-height: 124px;
	gap: 2rem;
}

.site-branding {
	display: flex;
	flex: 0 0 auto;
	align-items: center;
}

.custom-logo-link,
.site-logo {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
}

.custom-logo {
	display: block;
	width: auto;
	max-width: 220px;
	height: auto;
	max-height: 72px;
}

.site-logo-mark {
	color: #e21b22;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(2.75rem, 5vw, 4.75rem);
	font-weight: 400;
	line-height: 0.85;
	letter-spacing: -0.075em;
}

.header-actions {
	display: none;
	flex: 0 0 auto;
	align-items: center;
	margin-left: auto;
}

@media (max-width: 991px) {
	.header-container {
		padding-right: 1.25rem;
		padding-left: 1.25rem;
	}

	.header-inner {
		min-height: 84px;
		gap: 1rem;
	}

	.custom-logo {
		max-width: 130px;
		max-height: 48px;
	}

	.site-logo-mark {
		font-size: clamp(2.5rem, 12vw, 3.5rem);
	}

	.header-actions {
		display: flex;
	}
}

@media (max-width: 480px) {
	.header-inner {
		min-height: 76px;
	}

	.header-container {
		padding-right: 1rem;
		padding-left: 1rem;
	}

	.custom-logo {
		max-width: 112px;
		max-height: 42px;
	}

	.site-logo-mark {
		font-size: 2.7rem;
	}
}