.gj-header {
	position: sticky;
	top: 0;
	z-index: 40;
	background: linear-gradient(
		to bottom,
		rgba(245, 239, 230, 0.96),
		rgba(232, 221, 209, 0.92)
	);
	backdrop-filter: blur(18px);
	border-bottom: 1px solid rgba(201, 162, 39, 0.4);
}
.gj-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: var(--space-4);
	padding-bottom: var(--space-4);
	gap: var(--space-6);
}
.gj-header__brand {
	display: flex;
	align-items: center;
	flex: 1 1 auto;
	min-width: 0;
}
.gj-header__logo-link {
	display: inline-flex;
	align-items: center;
	gap: var(--space-3);
}
.gj-header__logo-mark {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid rgba(201, 162, 39, 0.75);
	display: flex;
	align-items: center;
	justify-content: center;
	background: radial-gradient(circle at 30% 0, #fffdfb 0, #e8ddd1 75%);
	color: var(--color-heading);
	font-family: var(--font-display);
	font-size: 0.9rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	box-shadow: var(--shadow-xs);
}
.gj-header__logo-text {
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.gj-header__logo-title {
	font-family: var(--font-display);
	font-size: 1.1rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--color-heading);
}
.gj-header__logo-subtitle {
	font-family: var(--font-serif);
	font-size: 0.75rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--color-gray-700);
}
.gj-header__nav {
	flex: 0 0 auto;
}
.gj-header__nav-list {
	display: flex;
	align-items: center;
	gap: var(--space-5);
}
.gj-header__nav-link {
	position: relative;
	font-size: 0.85rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	font-weight: 500;
	color: var(--color-gray-800);
	padding-bottom: 0.3rem;
}
.gj-header__nav-link::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 1px;
	background: linear-gradient(
		90deg,
		var(--color-accent),
		var(--color-decorative)
	);
	transition: width var(--transition-base);
}
.gj-header__nav-link:hover::after,
.gj-header__nav-link:focus-visible::after {
	width: 100%;
}
.gj-header__nav-link--cta {
	padding: 0.55rem 1.4rem;
	border-radius: var(--radius-pill);
	border: var(--border-gold);
	background: linear-gradient(
		135deg,
		var(--color-primary),
		var(--color-primary-hover)
	);
	color: #fff !important;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
}
.gj-header__nav-link--cta::after {
	display: none;
}
.gj-header__nav-link--cta:hover {
	background: linear-gradient(
		135deg,
		var(--color-primary-hover),
		var(--color-primary)
	);
	transform: translateY(-1px);
	box-shadow: var(--shadow-md);
}
.gj-header__nav-link--cta:active {
	transform: translateY(0);
	box-shadow: var(--shadow-xs);
}
.gj-header__toggle {
	display: none;
	position: relative;
	width: 42px;
	height: 32px;
	border-radius: 999px;
	border: 1px solid rgba(201, 162, 39, 0.8);
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 6px;
	background: rgba(255, 253, 251, 0.92);
	cursor: pointer;
	transition:
		background var(--transition-base),
		box-shadow var(--transition-base),
		transform var(--transition-base);
}
.gj-header__toggle-bar {
	width: 18px;
	height: 2px;
	border-radius: 999px;
	background: var(--color-heading);
	transition:
		transform var(--transition-base),
		opacity var(--transition-base),
		width var(--transition-base);
}
.gj-header__toggle:focus-visible {
	outline: 2px solid var(--color-accent);
	outline-offset: 3px;
	box-shadow: 0 0 0 1px rgba(201, 162, 39, 0.5);
}
.gj-header__toggle.is-open {
	background: rgba(201, 162, 39, 0.1);
	box-shadow: var(--shadow-sm);
}
.gj-header__toggle.is-open .gj-header__toggle-bar:nth-child(1) {
	transform: translateY(4px) rotate(42deg);
	width: 20px;
}
.gj-header__toggle.is-open .gj-header__toggle-bar:nth-child(2) {
	transform: translateY(-4px) rotate(-42deg);
	width: 20px;
}
.gj-header__nav.is-open {
	display: block;
}
@media (max-width: 960px) {
	.gj-header__nav {
		position: absolute;
		inset-inline: 0;
		top: 100%;
		background: radial-gradient(circle at top, #fffdfb 0, #e8ddd1 55%);
		border-bottom: 1px solid rgba(201, 162, 39, 0.35);
		box-shadow: 0 16px 45px rgba(0, 0, 0, 0.22);
		display: none;
	}
	.gj-header__nav-list {
		flex-direction: column;
		align-items: flex-start;
		padding: var(--space-4) var(--space-5) var(--space-6);
		gap: var(--space-3);
	}
	.gj-header__nav-link {
		padding-top: 0.3rem;
		padding-bottom: 0.3rem;
		font-size: 0.9rem;
	}
	.gj-header__nav-link--cta {
		align-self: stretch;
		justify-content: center;
		text-align: center;
		width: 100%;
	}
	.gj-header__toggle {
		display: inline-flex;
	}
	.gj-header__logo-subtitle {
		display: none;
	}
}
@media (max-width: 640px) {
	.gj-header__inner {
		padding-top: var(--space-3);
		padding-bottom: var(--space-3);
		gap: var(--space-4);
	}
	.gj-header__logo-title {
		font-size: 1rem;
		letter-spacing: 0.16em;
	}
	.gj-header__logo-mark {
		width: 36px;
		height: 36px;
		font-size: 0.8rem;
	}
}
