/* Menu route: fixed nav bar — solid black (skull lives on page hero only) */
.nav.nav--menu-page {
	background: #0a0807;
	border-bottom-color: var(--line, rgba(244, 237, 231, 0.12));
}
.nav.nav--menu-page.is-scrolled {
	background: rgba(10, 8, 7, 0.72);
	backdrop-filter: blur(12px) saturate(1.1);
	-webkit-backdrop-filter: blur(12px) saturate(1.1);
}

.page-hero--menu-cover {
	position: relative;
	z-index: 0;
	min-height: clamp(320px, 58vh, 560px);
	display: flex;
	align-items: flex-end;
	padding: 120px 0 56px;
	overflow: hidden;
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}

/* /menu hero: solid black banner (no food photo), large pulsing skull in veil */
.page-hero--menu-cover.page-hero--menu-site {
	background: #0a0807;
}
.page-hero--menu-site .page-hero__media {
	opacity: 0;
	pointer-events: none;
}

.page-hero--menu-cover .page-hero__media {
	position: absolute;
	inset: 0;
	border-radius: 0;
	aspect-ratio: auto;
	max-width: none;
}

.page-hero--menu-cover .page-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 30%;
}

.page-hero--menu-cover .page-hero__veil {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(10, 8, 7, .15) 0%, rgba(10, 8, 7, .55) 45%, rgba(10, 8, 7, .92) 100%);
}

.page-hero--menu-cover.page-hero--menu-site .page-hero__veil {
	background: linear-gradient(180deg, rgba(10, 8, 7, 0) 0%, rgba(10, 8, 7, 0.55) 72%, rgba(10, 8, 7, 0.94) 100%);
}

.page-hero--menu-cover.page-hero--menu-site .page-hero__veil::before {
	content: "";
	position: absolute;
	inset: 0;
	background: url("../images/site/brand/skull-color.svg") center 42% / auto min(38vh, min(60vw, 420px)) no-repeat;
	background-repeat: no-repeat;
	pointer-events: none;
	transform-origin: center center;
	will-change: opacity, transform;
	animation: menuSkullPulse 3.5s ease-in-out infinite;
}

@keyframes menuSkullPulse {
	0%,
	100% {
		opacity: 0.28;
		transform: scale(0.96);
	}
	50% {
		opacity: 0.92;
		transform: scale(1.05);
	}
}

@media (prefers-reduced-motion: reduce) {
	.page-hero--menu-cover.page-hero--menu-site .page-hero__veil::before {
		animation: none;
		opacity: 0.5;
		transform: none;
	}
}

.page-hero--menu-cover .page-hero__inner {
	position: relative;
	z-index: 2;
	padding: 28px;
}

.page-hero--menu-cover h1,
.page-hero--menu-cover .eyebrow,
.page-hero--menu-cover .page-hero__lede {
	color: #f4ede7;
	text-shadow: 0 4px 20px rgba(0, 0, 0, .35);
}

.page-hero--menu-cover .page-hero__lede {
	max-width: 680px;
}

#menu .menu-tabs {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	min-width: 0;
	width: 100%;
	max-width: none;
}

#menu .menu-tabs__level--primary {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 8px;
	width: fit-content;
	max-width: calc(100% - 48px);
	margin: 0 auto 20px;
	padding: 5px;
	background: var(--bg-3, rgba(255, 255, 255, 0.04));
	border: 1px solid var(--line, rgba(244, 237, 231, 0.12));
	border-radius: 999px;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

#menu .menu-tab--primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 10px 24px;
	border-radius: 999px;
	font-family: var(--f-sans, system-ui, sans-serif);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--cream-mute, #c9bfb5);
	border: 1px solid transparent;
	background: transparent;
	cursor: pointer;
	transition:
		background-color 0.25s ease,
		color 0.25s ease,
		border-color 0.25s ease,
		box-shadow 0.25s ease;
}

#menu .menu-tab--primary:hover {
	color: var(--cream, #f4ede7);
	background: rgba(255, 255, 255, 0.04);
}

#menu .menu-tab--primary.is-active {
	color: #0a0807;
	background: var(--bronze, #ab825e);
	border-color: var(--bronze, #ab825e);
	box-shadow: 0 2px 12px rgba(171, 130, 94, 0.25);
}

#menu .menu-tabs__subnav[hidden] {
	display: none;
}

#menu .menu-tabs.is-venue-loading {
	opacity: 0.55;
	pointer-events: none;
	transition: opacity 0.2s ease;
}

.menu-loc-switch {
	margin: 0 auto 36px;
	padding: 5px;
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: stretch;
	gap: 4px;
	width: fit-content;
	max-width: calc(100% - 48px);
	box-sizing: border-box;
	background: var(--bg-3, rgba(255, 255, 255, 0.04));
	border: 1px solid var(--line, rgba(244, 237, 231, 0.12));
	border-radius: 999px;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.menu-loc-switch__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 10px 22px;
	border-radius: 999px;
	font-family: var(--f-sans, system-ui, sans-serif);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--cream-mute, #c9bfb5);
	border: 1px solid transparent;
	transition:
		background-color 0.25s ease,
		color 0.25s ease,
		border-color 0.25s ease,
		box-shadow 0.25s ease;
}

.menu-loc-switch__btn:hover {
	color: var(--cream, #f4ede7);
	background: rgba(255, 255, 255, 0.04);
}

.menu-loc-switch__btn.is-active {
	color: #0a0807;
	background: var(--bronze, #ab825e);
	border-color: var(--bronze, #ab825e);
	box-shadow: 0 2px 12px rgba(171, 130, 94, 0.25);
}

#menu.menu {
	position: relative;
	z-index: 0;
}

/* Categories: wrapped grid (same as mobile), no horizontal scroll */
#menu .menu-tabs__nav-scroll {
	display: block;
	align-self: stretch;
	width: calc(100% + 48px);
	max-width: none;
	margin: 0 0 56px;
	margin-left: -24px;
	margin-right: -24px;
	padding-bottom: 28px;
	border-bottom: 1px solid var(--line, rgba(244, 237, 231, 0.12));
	box-sizing: border-box;
}

#menu .menu-tabs__nav-scroll .menu-tabs__nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	align-content: center;
	gap: 6px;
	width: 100%;
	max-width: none;
	height: auto;
	min-height: 0;
	margin: 0;
	overflow: visible;
	padding: 12px 14px;
	border-radius: 0;
	box-sizing: border-box;
}

#menu .menu-tabs__nav-scroll .menu-tab {
	flex: 0 0 auto;
	width: auto;
	max-width: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 5px 10px;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.06em;
	line-height: 1.15;
	text-align: center;
	white-space: nowrap;
}

#menu .menu-panels {
	align-self: stretch;
	width: 100%;
	margin-top: 8px;
}

@media (max-width: 767.98px) {
	/* Skull: compact accent below nav (avoids huge blurred center graphic on small screens) */
	@keyframes menuSkullPulseMobile {
		0%,
		100% {
			opacity: 0.72;
			transform: scale(0.98);
		}
		50% {
			opacity: 1;
			transform: scale(1.02);
		}
	}

	.page-hero--menu-cover.page-hero--menu-site .page-hero__veil::before {
		inset: auto;
		top: 58px;
		right: 14px;
		left: auto;
		bottom: auto;
		width: min(108px, 28vw);
		height: min(132px, 34vw);
		background-position: center;
		background-size: contain;
		animation: menuSkullPulseMobile 3.5s ease-in-out infinite;
	}

	@media (prefers-reduced-motion: reduce) {
		.page-hero--menu-cover.page-hero--menu-site .page-hero__veil::before {
			animation: none;
			opacity: 0.88;
		}
	}

	.page-hero--menu-cover .page-hero__inner {
		padding: 18px 16px;
	}

	#menu .menu-tabs__level--primary {
		width: calc(100% - 32px);
		max-width: none;
		margin-bottom: 16px;
	}

	#menu .menu-tab--primary {
		flex: 1 1 0;
		min-width: 0;
		padding: 10px 12px;
		font-size: 11px;
		letter-spacing: 0.1em;
	}

	.menu-loc-switch {
		width: calc(100% - 32px);
		max-width: none;
		margin-bottom: 28px;
	}

	#menu .menu-tabs__nav-scroll {
		margin-bottom: 44px;
		padding-bottom: 22px;
	}

	.menu-loc-switch__btn {
		flex: 1 1 0;
		min-width: 0;
		padding: 10px 12px;
		font-size: 11px;
		letter-spacing: 0.1em;
	}

	#menu .menu-tabs__nav-scroll .menu-tab {
		padding: 4px 8px;
		letter-spacing: 0.05em;
	}
}
