.ac-header {
	position: sticky;
	top: 0;
	z-index: 40;
	background: rgba(249, 243, 234, 0.96);
	backdrop-filter: blur(14px);
	border-radius: 24px;
	padding: 0.65rem 0.5rem;
	margin-bottom: 1.5rem;
	box-shadow: 0 10px 30px rgba(32, 18, 12, 0.08);
	border: 1px solid rgba(181, 138, 90, 0.35);
}
@media (min-width: 768px) {
	.ac-header {
		margin-bottom: 2rem;
		padding: 0.75rem 0.75rem;
	}
}
.ac-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}
.ac-header__brand {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.3rem 0.6rem;
	border-radius: 999px;
	transition:
		background-color var(--transition-base),
		transform var(--transition-fast);
	max-width: 70%;
}
.ac-header__brand:hover {
	background: rgba(244, 221, 225, 0.7);
	transform: translateY(-1px);
}
.ac-header__brand-mark {
	width: 40px;
	height: 40px;
	border-radius: 999px;
	background:
		radial-gradient(circle at 20% 0, #fbe4eb 0, transparent 58%),
		radial-gradient(circle at 100% 100%, #4a1016 0, transparent 62%),
		linear-gradient(140deg, #7b1224, #a73548);
	box-shadow: 0 10px 24px rgba(73, 6, 15, 0.45);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	border: 1px solid rgba(255, 230, 223, 0.8);
}
.ac-header__brand-icon {
	width: 16px;
	height: 16px;
	border-radius: 50%;
	border: 1px solid rgba(255, 237, 225, 0.9);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7);
	background:
		radial-gradient(circle at 30% 0, #ffe9f0 0, transparent 60%),
		radial-gradient(circle at 100% 100%, #4e1118 0, transparent 70%);
}
.ac-header__brand-text {
	display: flex;
	flex-direction: column;
}
.ac-header__brand-kicker {
	font-family: var(--font-serif);
	font-size: 0.8rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--gray-500);
}
.ac-header__brand-title {
	font-family: var(--font-serif);
	font-size: 1.05rem;
	line-height: 1.1;
	color: var(--color-text);
}
.ac-header__toggle {
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 0.25rem;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 999px;
	border: 1px solid rgba(181, 138, 90, 0.5);
	background: rgba(255, 250, 245, 0.95);
	cursor: pointer;
	padding: 0;
	transition:
		background-color var(--transition-base),
		transform var(--transition-fast),
		box-shadow var(--transition-base);
}
.ac-header__toggle-bar {
	width: 1.25rem;
	height: 2px;
	border-radius: 999px;
	background: var(--color-text);
	transition:
		transform var(--transition-base),
		opacity var(--transition-base),
		background-color var(--transition-base);
}
.ac-header__toggle:focus-visible {
	outline: none;
	box-shadow: var(--shadow-focus);
}
.ac-header__toggle[aria-expanded="true"] {
	background: var(--color-primary);
	box-shadow: var(--shadow-soft-high);
}
.ac-header__toggle[aria-expanded="true"] .ac-header__toggle-bar {
	background: #fff;
}
.ac-header__toggle[aria-expanded="true"] .ac-header__toggle-bar:first-child {
	transform: translateY(4px) rotate(42deg);
}
.ac-header__toggle[aria-expanded="true"] .ac-header__toggle-bar:last-child {
	transform: translateY(-4px) rotate(-42deg);
}
@media (min-width: 900px) {
	.ac-header__toggle {
		display: none;
	}
}
.ac-header__nav {
	position: fixed;
	inset-inline: 0;
	top: 0;
	bottom: auto;
	transform: translateY(-110%);
	background: rgba(24, 9, 7, 0.86);
	backdrop-filter: blur(20px);
	transition: transform var(--transition-slow);
	padding: 4.5rem 1.5rem 1.75rem;
	border-radius: 0 0 22px 22px;
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
	z-index: -1;
}
.ac-header__nav-list {
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
}
.ac-header__nav-link {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.95rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(251, 242, 235, 0.9);
	padding: 0.45rem 0;
	border-radius: 999px;
}
.ac-header__nav-link::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 999px;
	border: 1px solid rgba(227, 200, 163, 0.95);
	background: rgba(244, 221, 225, 0.4);
	transform: scale(0.8);
	transition:
		transform var(--transition-base),
		background-color var(--transition-base);
}
.ac-header__nav-link:hover {
	color: #fff;
}
.ac-header__nav-link:hover::before {
	transform: scale(1);
	background: var(--color-accent-bronze);
}
.ac-header__nav-item--accent .ac-header__nav-link {
	padding: 0.55rem 1.1rem;
	margin-top: 0.35rem;
	border-radius: 999px;
    color: #fff;
	border: 1px solid rgba(244, 221, 225, 0.7);
	background: linear-gradient(
		120deg,
		rgba(123, 18, 36, 0.96),
		rgba(167, 53, 72, 0.98)
	);
	justify-content: center;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.55);
}
.ac-header__nav-item--accent .ac-header__nav-link:hover {
  color: #fff;
}
.ac-header__nav-item--accent .ac-header__nav-link::before {
	display: none;
}
.ac-header__nav-link--cta {
	color: #fff;
}
.ac-header__nav-link--cta:hover {
	background: linear-gradient(
		120deg,
		rgba(167, 53, 72, 1),
		rgba(123, 18, 36, 1)
	);
}
.ac-header__nav--open {
	transform: translateY(0);
}
@media (min-width: 900px) {
	.ac-header__nav {
		position: static;
		transform: none;
		background: transparent;
		backdrop-filter: none;
		padding: 0;
		border-radius: 0;
		box-shadow: none;
		z-index: auto;
	}
	.ac-header__nav-list {
		flex-direction: row;
		align-items: center;
		gap: 1.4rem;
	}
	.ac-header__nav-link {
		color: var(--color-text-soft);
		padding: 0.25rem 0;
		font-size: 0.8rem;
	}
	.ac-header__nav-link::before {
		display: none;
	}
	.ac-header__nav-link:hover {
		color: var(--color-primary-soft);
	}
	.ac-header__nav-item--accent .ac-header__nav-link {
		margin-top: 0;
		padding: 0.5rem 1.4rem;
		border-radius: 999px;
		border: 1px solid rgba(181, 138, 90, 0.7);
		background:
			radial-gradient(circle at 0 0, #f5dde2 0, transparent 55%),
			linear-gradient(120deg, #7b1224, #a73548);
		font-size: 0.78rem;
		box-shadow: 0 12px 26px rgba(73, 6, 15, 0.55);
	}
}
.ac-header__nav a:focus-visible {
	outline: none;
	box-shadow: var(--shadow-focus);
	border-radius: 999px;
}
.ac-header--menu-open {
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}
.ac-header__nav-backdrop {
	position: fixed;
	inset: 0;
	background: rgba(18, 6, 4, 0.5);
	backdrop-filter: blur(4px);
	opacity: 0;
	pointer-events: none;
	transition: opacity var(--transition-base);
	z-index: 30;
}
.ac-header__nav-backdrop--visible {
	opacity: 1;
	pointer-events: auto;
}
