/* ==========================================================================
   The Smokin' Pig - Main Stylesheet
   Western BBQ Theme - Rustic, Bold, Clean
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Variables / Design Tokens
   -------------------------------------------------------------------------- */
:root {
	/* Colors - BBQ Western Palette */
	--color-charcoal: #1a1a1a;
	--color-charcoal-light: #2d2d2d;
	--color-cream: #f5f0e6;
	--color-cream-dark: #e8dfd0;
	--color-wood: #5c4033;
	--color-wood-light: #8b6914;
	--color-burnt-orange: #cc5500;
	--color-burnt-orange-dark: #a34400;
	--color-bbq-red: #8b2500;
	--color-mustard: #d4a017;
	--color-smoke: #696969;
	--color-white: #ffffff;
	--color-black: #000000;

	/* Status colors */
	--color-success: #2e7d32;
	--color-error: #c62828;
	--color-warning: --color-mustard;

	/* Typography - Western BBQ Stack */
	--font-hero: "Rye", serif;
	--font-heading: "Rye", serif;
	--font-accent: "Bebas Neue", sans-serif;
	--font-note: "Special Elite", monospace;
	--font-menu: "Cabin Sketch", "Chalkduster", "Marker Felt", cursive;
	--font-body: "Open Sans", sans-serif;

	/* Spacing */
	--space-xs: 0.25rem;
	--space-sm: 0.5rem;
	--space-md: 1rem;
	--space-lg: 2rem;
	--space-xl: 3rem;
	--space-xxl: 5rem;

	/* Layout */
	--container-max: 1200px;
	--header-height: 80px;

	/* Effects */
	--shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
	--shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
	--shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
	--shadow-glow: 0 0 30px rgba(204, 85, 0, 0.3);
	--radius-sm: 4px;
	--radius-md: 8px;
	--radius-lg: 12px;
	--transition: 0.3s ease;

	/* Background textures */
	--bg-dark-texture: url("/assets/images/backgrounds/darkslate.webp");
	--bg-light-texture: url("/assets/images/backgrounds/light1.webp");
	--bg-light2-texture: url("/assets/images/backgrounds/light2.webp");
	--bg-paper-texture: url("/assets/images/backgrounds/paper.webp");
	--bg-grunge-texture: url("/assets/images/backgrounds/grey1.webp");
	--bg-wood-texture: url("/assets/images/backgrounds/wood1.webp");
	--bg-marble-texture: url("/assets/images/backgrounds/light_marble.webp");
	--bg-chalkboard: url("/assets/images/backgrounds/vertical-black-board.webp");
	--bg-chalkboard2: url("/assets/images/backgrounds/vertical-black-board2.webp");
	--bg-chalkboard-dark: url("/assets/images/backgrounds/vertical-black-board-darker.webp");
	--bg-newchalkboard: url("/assets/images/backgrounds/chalk.webp");
	--bg-fire: url("/assets/videos/fire.webm");
}

/* --------------------------------------------------------------------------
   Reset & Base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	padding: 0;
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.6;
	color: var(--color-charcoal);
	background-color: var(--color-cream);
	overflow-x: hidden;
}

/* -------------------------------------------------------------------------
   Premium Page Transitions - Split Curtain Effect
   ------------------------------------------------------------------------- */
body.page-entering main {
	opacity: 0;
	transform: translateY(20px);
	filter: blur(4px);
}

body main {
	transition:
		opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
		transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
		filter 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

body.page-leaving main {
	opacity: 0;
	transform: scale(0.97);
	filter: blur(3px) saturate(0.8);
}

/* Split curtain container */
.page-transition-overlay {
	position: fixed;
	inset: 0;
	z-index: 9999;
	pointer-events: none;
	display: flex;
	flex-direction: row;
}

/* Left curtain panel */
.page-transition-overlay::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 50%;
	height: 100%;
	background: linear-gradient(135deg, #1a1512 0%, #2a1f1a 50%, #1a1512 100%);
	background-image: var(--bg-dark-texture);
	background-size: cover;
	box-shadow: 
		4px 0 30px rgba(0, 0, 0, 0.5),
		inset -2px 0 40px rgba(204, 85, 0, 0.15);
	transform: translateX(-101%);
	transition: transform 0.55s cubic-bezier(0.77, 0, 0.175, 1);
	will-change: transform;
}

/* Right curtain panel */
.page-transition-overlay::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 50%;
	height: 100%;
	background: linear-gradient(225deg, #1a1512 0%, #2a1f1a 50%, #1a1512 100%);
	background-image: var(--bg-dark-texture);
	background-size: cover;
	box-shadow: 
		-4px 0 30px rgba(0, 0, 0, 0.5),
		inset 2px 0 40px rgba(204, 85, 0, 0.15);
	transform: translateX(101%);
	transition: transform 0.55s cubic-bezier(0.77, 0, 0.175, 1);
	will-change: transform;
}

/* Active state - curtains meet in center */
.page-transition-overlay.is-active::before {
	transform: translateX(0);
}

.page-transition-overlay.is-active::after {
	transform: translateX(0);
}

/* Center accent line when curtains meet */
.page-transition-overlay .transition-accent {
	position: absolute;
	left: 50%;
	top: 0;
	width: 4px;
	height: 100%;
	background: linear-gradient(180deg,
		var(--color-burnt-orange) 0%,
		var(--color-mustard) 30%,
		var(--color-burnt-orange) 50%,
		var(--color-bbq-red) 70%,
		var(--color-burnt-orange) 100%);
	transform: translateX(-50%) scaleY(0);
	transform-origin: center;
	transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1) 0.25s;
	box-shadow: 0 0 20px rgba(204, 85, 0, 0.6), 0 0 40px rgba(204, 85, 0, 0.3);
	z-index: 1;
}

.page-transition-overlay.is-active .transition-accent {
	transform: translateX(-50%) scaleY(1);
}

@media (prefers-reduced-motion: reduce) {
	body main {
		transition: none !important;
	}
	.page-transition-overlay::before,
	.page-transition-overlay::after,
	.page-transition-overlay .transition-accent {
		transition: none !important;
	}
}

html {
	overflow-x: hidden;
}

main {
	margin: 0;
	padding: 0;
	display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-heading);
	font-weight: 400;
	line-height: 1.2;
	margin: 0 0 var(--space-md);
	text-transform: uppercase;
	letter-spacing: 2px;
}

h1 {
	font-family: var(--font-hero);
}

/* Accent text for prices, numbers */
.price,
.accent-text {
	font-family: var(--font-accent);
	letter-spacing: 1px;
}

/* Notes and special text */
.note-text,
.truck-notes,
.event-notes {
	font-family: var(--font-note);
}

p {
	margin: 0 0 var(--space-md);
}

a {
	color: var(--color-burnt-orange);
	text-decoration: none;
	transition: color var(--transition);
}

a:hover {
	color: var(--color-burnt-orange-dark);
}

img {
	max-width: 100%;
	height: auto;
}

/* --------------------------------------------------------------------------
   Layout
   -------------------------------------------------------------------------- */
.container {
	width: 100%;
	max-width: var(--container-max);
	margin: 0 auto;
	padding: 0 var(--space-md);
}

.section {
	padding: var(--space-xxl) 0;
	position: relative;
}

/* Light sections with texture */
.section-light {
	background-color: var(--color-cream);
	background-image: var(--bg-light-texture);
	background-size: cover;
	background-position: center;
}

/* Dark sections with grunge texture */
.section-dark {
	background-color: var(--color-charcoal);
	background-image: var(--bg-grunge-texture);
	background-size: cover;
	background-position: center;
	color: var(--color-cream);
}

.section-dark a {
	color: var(--color-mustard);
}

/* Blur overlay for dark sections */
.section-blur-overlay {
	position: relative;
	overflow: hidden;
}

.section-blur-overlay::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(26, 26, 26, 0.75);
	backdrop-filter: blur(1px);
	-webkit-backdrop-filter: blur(1px);
	z-index: 0;
}

.section-blur-overlay > .container {
	position: relative;
	z-index: 1;
}

.section-blur-overlay .section-title,
.section-blur-overlay .section-subtitle,
.section-blur-overlay p,
.section-blur-overlay h2,
.section-blur-overlay h3 {
	color: var(--color-cream);
}

.section-blur-overlay .section-subtitle {
	color: rgba(255, 255, 255, 0.85);
}

/* Paper texture sections */
.section-paper {
	background-color: var(--color-cream-dark);
	background-image: var(--bg-paper-texture);
	background-size: cover;
	background-position: center;
}

/* Grunge texture for variety */
.section-grunge {
	background-color: var(--color-cream);
	background-image: var(--bg-grunge-texture);
	background-size: cover;
	background-position: center;
}

/* Light marble section */
.section-marble {
	background-color: var(--color-white);
	background-image: var(--bg-marble-texture);
	background-size: cover;
	background-position: center;
}

/* Wood texture for food truck section */
.section-wood {
	background-color: var(--color-charcoal);
	background-image: var(--bg-wood-texture);
	background-size: cover;
	background-position: center;
	color: var(--color-cream);
}

.section-wood a {
	color: var(--color-mustard);
}

/* Solid charcoal dark section (no texture) */
.section-charcoal {
	color: var(--color-cream);
}

.section-charcoal a {
	color: var(--color-mustard);
}

.section-charcoal .section-title::after {
	background: var(--color-mustard);
}

/* Marble dark section (marble with dark overlay) */
.section-marble-dark {
	background-color: var(--color-charcoal);
	background-image: var(--bg-marble-texture);
	background-size: cover;
	background-position: center;
	background-blend-mode: overlay;
	color: var(--color-cream);
	position: relative;
}

.section-marble-dark::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(26, 26, 26, 0.85);
	pointer-events: none;
}

.section-marble-dark > .container {
	position: relative;
	z-index: 1;
}

.section-marble-dark a {
	color: var(--color-mustard);
}

.section-marble-dark .section-title::after {
	background: var(--color-mustard);
}

body.modal-open {
	overflow: hidden;
}

.order-choice-modal {
	position: fixed;
	inset: 0;
	z-index: 1200;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition:
		opacity 0.3s ease,
		visibility 0.3s ease;
	padding: 1.25rem;
}

.order-choice-modal.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.order-choice-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.75);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}

.order-choice-card {
	position: relative;
	z-index: 1;
	width: min(580px, 100%);
	background: radial-gradient(ellipse at center, #fffcf8 0%, #fbfbfb 50%, #d1d1d1 85%, #a7a7a7 100%);
	color: var(--color-charcoal);
	border-radius: 24px;
	padding: 2rem;
	box-shadow:
		0 30px 60px -15px rgba(0, 0, 0, 0.5),
		0 0 0 1px rgba(255, 255, 255, 0.3),
		inset 0 1px 0 rgba(255, 255, 255, 0.9),
		inset 0 -2px 8px rgba(139, 69, 19, 0.05);
	text-align: center;
	animation: modalSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	border: 4px solid;
	border-color: #8b4513 #6b3410 #5a2d0e #8b4513;
}

@keyframes modalSlideIn {
	from {
		opacity: 0;
		transform: scale(0.9) translateY(20px);
	}
	to {
		opacity: 1;
		transform: scale(1) translateY(0);
	}
}

.order-choice-header {
	margin-bottom: 1.5rem;
	padding-bottom: 1.25rem;
	border-bottom: 2px solid rgba(211, 84, 0, 0.12);
}

.order-choice-mascot {
	width: 100px;
	height: auto;
	margin-bottom: 1rem;
	/* animation: mascotBounce 2s ease-in-out infinite; */
	filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

@keyframes mascotBounce {
	0%,
	100% {
		transform: translateY(0) rotate(-2deg);
	}
	50% {
		transform: translateY(-8px) rotate(2deg);
	}
}

.order-choice-btn-truck-img,
.order-choice-btn-restaurant-img {
	width: auto;
	height: 60px;
	margin-bottom: 0.5rem;
	filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.25));
}

.order-choice-card h3 {
	margin-bottom: 0.5rem;
	font-size: clamp(1.6rem, 4vw, 2.2rem);
	font-weight: 800;
	color: var(--color-charcoal);
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

.order-choice-subtitle {
	font-size: 1.1rem;
	color: var(--color-smoke);
	margin: 0;
}

.order-choice-close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	width: 2.5rem;
	height: 2.5rem;
	border: 0;
	border-radius: 50%;
	background: linear-gradient(145deg, #f5f5f5, #e8e8e8);
	color: var(--color-charcoal);
	font-size: 1.5rem;
	line-height: 1;
	cursor: pointer;
	transition: all 0.2s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow:
		0 2px 6px rgba(0, 0, 0, 0.1),
		inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.order-choice-close:hover {
	background: linear-gradient(145deg, #eee, #ddd);
	transform: rotate(90deg) scale(1.1);
	box-shadow:
		0 4px 10px rgba(0, 0, 0, 0.15),
		inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.order-choice-actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	margin-bottom: 1.25rem;
	padding: 1rem;
	background: rgba(255, 255, 255, 0.5);
	border-radius: 16px;
	box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.04);
}

.order-choice-btn {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 1.5rem 1rem;
	border-radius: 18px;
	text-decoration: none;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	border: 3px solid transparent;
	position: relative;
	overflow: hidden;
}

.order-choice-btn::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 50%;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0) 100%);
	pointer-events: none;
}

.order-choice-btn-restaurant {
	background: linear-gradient(145deg, #8f5541 0%, #7b4635 50%, #66382a 100%);
	color: white;
	box-shadow:
		0 8px 20px -4px rgba(102, 56, 42, 0.35),
		0 4px 8px -2px rgba(0, 0, 0, 0.2),
		inset 0 -3px 0 rgba(0, 0, 0, 0.15),
		inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.order-choice-btn-restaurant:hover {
	transform: translateY(-6px) scale(1.03);
	background: linear-gradient(145deg, #a0644f 0%, #8a4f3d 50%, #744233 100%);
	box-shadow:
		0 20px 40px -8px rgba(116, 66, 51, 0.45),
		0 10px 20px -5px rgba(0, 0, 0, 0.3),
		inset 0 -3px 0 rgba(0, 0, 0, 0.1),
		inset 0 2px 0 rgba(255, 255, 255, 0.4);
	border-color: rgba(255, 245, 230, 0.8);
	color: #f9f5ef;
}

.order-choice-btn-restaurant:active {
	transform: translateY(-2px) scale(1);
	box-shadow:
		0 4px 12px -2px rgba(192, 57, 43, 0.4),
		inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.order-choice-btn-truck {
	background: linear-gradient(145deg, #9e6f38 0%, #855b2f 50%, #6f4c29 100%);
	color: white;
	box-shadow:
		0 8px 20px -4px rgba(111, 76, 41, 0.4),
		0 4px 8px -2px rgba(0, 0, 0, 0.2),
		inset 0 -3px 0 rgba(0, 0, 0, 0.15),
		inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.order-choice-btn-truck:hover {
	transform: translateY(-6px) scale(1.03);
	background: linear-gradient(145deg, #af7f45 0%, #95683a 50%, #7c5731 100%);
	box-shadow:
		0 20px 40px -8px rgba(124, 87, 49, 0.5),
		0 10px 20px -5px rgba(0, 0, 0, 0.3),
		inset 0 -3px 0 rgba(0, 0, 0, 0.1),
		inset 0 2px 0 rgba(255, 255, 255, 0.4);
	border-color: rgba(255, 245, 230, 0.8);
	color: #f9f5ef;
}

.order-choice-btn-truck:active {
	transform: translateY(-2px) scale(1);
	box-shadow:
		0 4px 12px -2px rgba(211, 84, 0, 0.4),
		inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.order-choice-btn-icon {
	font-size: 2.5rem;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 0.5rem;
	filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.25));
}

.order-choice-btn-label {
	font-size: 1.3rem;
	font-weight: 700;
	margin-bottom: 0.25rem;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.order-choice-btn-address {
	font-size: 0.8rem;
	opacity: 0.9;
	text-align: center;
	line-height: 1.3;
	text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

.order-choice-warning {
	background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
	color: #7a5a00;
	padding: 0.85rem 1.25rem;
	border-radius: 12px;
	font-size: 0.9rem;
	font-weight: 600;
	margin: 0;
	border: 1px solid #ffc107;
	box-shadow:
		0 4px 12px -2px rgba(255, 193, 7, 0.3),
		inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

@media (max-width: 560px) {
	.order-choice-modal {
		align-items: flex-start;
		padding: 0.75rem;
	}

	.order-choice-card {
		width: min(520px, 100%);
		max-height: calc(100svh - 1.5rem);
		overflow-y: auto;
		padding: 1rem;
	}

	.order-choice-header {
		margin-bottom: 1rem;
		padding-bottom: 0.85rem;
	}

	.order-choice-mascot {
		width: 76px;
		margin-bottom: 0.65rem;
	}

	.order-choice-actions {
		grid-template-columns: 1fr;
		gap: 0.75rem;
		padding: 0.75rem;
		margin-bottom: 1rem;
	}

	.order-choice-truck-icon {
		width: 80px;
	}

	.order-choice-btn {
		padding: 1rem 0.85rem;
		border-radius: 14px;
	}

	.order-choice-btn-truck-img,
	.order-choice-btn-restaurant-img {
		height: 46px;
		margin-bottom: 0.35rem;
	}

	.order-choice-btn-icon {
		font-size: 2rem;
	}

	.order-choice-btn-label {
		font-size: 1.15rem;
	}

	.order-choice-warning {
		padding: 0.7rem 0.9rem;
		font-size: 0.85rem;
	}
}

.section-title {
	font-size: clamp(2.2rem, 5vw, 3.5rem);
	text-align: center;
	margin-bottom: var(--space-xl);
	position: relative;
	color: inherit;
	letter-spacing: 3px;
	will-change: transform, opacity;
}

.section-title::after {
	content: "";
	display: block;
	width: 100px;
	height: 3px;
	background: linear-gradient(90deg, transparent, var(--color-burnt-orange), transparent);
	margin: var(--space-md) auto 0;
	transform-origin: center;
}

.section-dark .section-title::after {
	background: linear-gradient(90deg, transparent, var(--color-mustard), transparent);
}

.section-wood .section-title::after {
	background: linear-gradient(90deg, transparent, var(--color-mustard), transparent);
}

.subsection-title {
	font-size: 1.5rem;
	margin: var(--space-xl) 0 var(--space-lg);
	text-align: center;
}

/* --------------------------------------------------------------------------
   Header & Navigation
   -------------------------------------------------------------------------- */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1005;
	background: var(--color-charcoal);
	height: var(--header-height);
	box-shadow: var(--shadow-md);
	transition: background var(--transition);
}

.site-header .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
}

.logo {
	display: flex;
	align-items: center;
	text-decoration: none;
}

.logo-img {
	height: 60px;
	width: auto;
	transition: transform var(--transition);
}

.logo:hover .logo-img {
	transform: scale(1.05);
}

.logo-text {
	font-family: var(--font-heading);
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--color-cream);
	text-transform: uppercase;
	letter-spacing: 2px;
}

.nav-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: var(--space-sm);
}

.nav-toggle span {
	display: block;
	width: 25px;
	height: 3px;
	background: var(--color-cream);
	margin: 5px 0;
	transition: var(--transition);
}

.nav-links {
	display: flex;
	align-items: center;
	gap: var(--space-lg);
	list-style: none;
	margin: 0;
	padding: 0;
}

.nav-links a {
	color: var(--color-cream);
	font-family: var(--font-accent);
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 2px;
	padding: var(--space-sm) 0;
	border-bottom: 2px solid transparent;
	transition: var(--transition);
}

.nav-links a:hover {
	color: var(--color-mustard);
	border-bottom-color: var(--color-mustard);
}

/* Nav Order Online button - wider */
.nav-links .btn {
	padding: var(--space-sm) var(--space-xl);
	border-bottom: none;
}

/* Mobile Menu Overlay */
.menu-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.7);
	z-index: 1001;
	opacity: 0;
	visibility: hidden;
	transition:
		opacity 0.4s ease,
		visibility 0.4s ease;
}

.menu-overlay.active {
	opacity: 1;
	visibility: visible;
}

/* Main content wrapper for parallax effect */
.main-content-wrapper {
	will-change: transform, filter;
}

.main-content-wrapper.menu-active {
	pointer-events: none;
}

/* Hide mobile nav mascot on desktop */
.nav-mascot {
	display: none;
}

/* Mobile Navigation - Premium Slide-out Panel */
@media (max-width: 768px) {
	.nav-toggle {
		display: block;
		position: relative;
		z-index: 1006;
	}

	.logo-img {
		height: 50px;
	}

	.main-nav {
		position: static;
	}

	.site-header {
		z-index: 1005;
	}

	.nav-links {
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		width: 85%;
		max-width: 380px;
		height: 100vh;
		height: 100dvh;
		background: linear-gradient(135deg, rgba(35, 28, 22, 0.97) 0%, rgba(28, 22, 18, 0.98) 100%), url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
		flex-direction: column;
		justify-content: center;
		align-items: flex-start;
		gap: 0;
		padding: var(--space-xl) var(--space-xl) var(--space-xl) var(--space-xxl);
		box-shadow:
			-20px 0 60px rgba(0, 0, 0, 0.5),
			inset 1px 0 0 rgba(255, 255, 255, 0.03),
			inset -1px 0 0 rgba(0, 0, 0, 0.3);
		border-left: 3px solid rgba(181, 130, 66, 0.4);
		z-index: 1004;
		transform: translate3d(100%, 0, 0);
		visibility: hidden;
		opacity: 1;
		overflow-y: auto;
		overscroll-behavior: contain;
	}

	.nav-links.active {
		visibility: visible;
	}

	.nav-links li {
		width: 100%;
		opacity: 0;
		transform: translateX(40px);
		margin-bottom: var(--space-xs);
	}

	/* Mascot in mobile nav */
	.nav-links li.nav-mascot {
		display: block;
		opacity: 1;
		transform: none;
		text-align: center;
		margin-bottom: var(--space-md);
		padding-bottom: var(--space-sm);
		border-bottom: 1px solid rgba(255, 213, 79, 0.2);
	}

	.nav-mascot-img {
		max-width: 140px;
		height: auto;
		filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
	}

	.nav-links a {
		display: block;
		padding: var(--space-md) 0;
		font-size: 1.3rem;
		letter-spacing: 3px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.06);
		transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
		color: var(--color-cream);
		position: relative;
	}

	.nav-links li:first-child a {
		border-top: none;
	}

	.nav-links li:last-child a {
		border-bottom: none;
	}

	/* Nudge order button slightly lower on mobile only */
	.nav-links li.order-online-nav-item {
		margin-top: 0.35rem;
	}

	.nav-links a::before {
		content: "";
		position: absolute;
		left: -20px;
		top: 50%;
		transform: translateY(-50%);
		width: 0;
		height: 2px;
		background: var(--color-mustard);
		transition: width 0.3s ease;
	}

	.nav-links a:hover,
	.nav-links a:focus {
		color: var(--color-mustard);
		padding-left: var(--space-md);
	}

	.nav-links a:hover::before,
	.nav-links a:focus::before {
		width: 12px;
	}

	/* Hamburger animation */
	.nav-toggle span {
		transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
		transform-origin: center;
	}

	.nav-toggle.active span:nth-child(1) {
		transform: rotate(45deg) translate(5px, 5px);
	}

	.nav-toggle.active span:nth-child(2) {
		opacity: 0;
		transform: scaleX(0);
	}

	.nav-toggle.active span:nth-child(3) {
		transform: rotate(-45deg) translate(5px, -5px);
	}

	/* Menu social/branding footer */
	.nav-links::after {
		content: "";
		position: absolute;
		bottom: var(--space-xl);
		left: var(--space-xxl);
		right: var(--space-xl);
		height: 1px;
		background: linear-gradient(90deg, rgba(181, 130, 66, 0.3), transparent);
	}
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
	display: inline-block;
	padding: var(--space-sm) var(--space-lg);
	font-family: var(--font-accent);
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 2px;
	text-align: center;
	text-decoration: none;
	border: 2px solid transparent;
	border-radius: var(--radius-sm);
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow:
		0 4px 15px rgba(0, 0, 0, 0.2),
		0 2px 4px rgba(0, 0, 0, 0.1),
		inset 0 1px 0 rgba(255, 255, 255, 0.15),
		inset 0 -2px 0 rgba(0, 0, 0, 0.1);
	position: relative;
	overflow: hidden;
	will-change: transform;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.btn::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.5s ease;
}

.btn:hover::before {
	left: 100%;
}

.btn:hover {
	transform: translateY(-3px) scale(1.02);
	box-shadow:
		0 10px 22px rgba(0, 0, 0, 0.22),
		0 6px 12px rgba(0, 0, 0, 0.15),
		inset 0 1px 0 rgba(255, 255, 255, 0.2),
		inset 0 -2px 0 rgba(0, 0, 0, 0.08);
}

.btn:active {
	transform: translateY(-1px) scale(1);
	box-shadow:
		0 4px 12px rgba(0, 0, 0, 0.2),
		inset 0 2px 4px rgba(0, 0, 0, 0.15);
}

.btn-primary {
	background: linear-gradient(145deg, #8c4d2f 0%, #744028 60%, #5d311f 100%);
	color: var(--color-white) !important;
	border-color: #6d3b24;
	box-shadow:
		0 6px 20px rgba(93, 49, 31, 0.35),
		0 3px 8px rgba(0, 0, 0, 0.2),
		inset 0 1px 0 rgba(255, 255, 255, 0.25),
		inset 0 -3px 0 rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
	background: linear-gradient(145deg, #9b5736 0%, #83492d 50%, #693b25 100%);
	border-color: #8a4f31;
	color: var(--color-white) !important;
	box-shadow:
		0 12px 30px rgba(105, 59, 37, 0.45),
		0 6px 15px rgba(0, 0, 0, 0.25),
		inset 0 2px 0 rgba(255, 255, 255, 0.35),
		inset 0 -3px 0 rgba(0, 0, 0, 0.1);
}

/* Animated CTA button - Eye-catching with shimmer and bounce */
.btn-animated {
	position: relative;
	animation: none;
	box-shadow:
		0 8px 22px rgba(93, 49, 31, 0.35),
		inset 0 1px 0 rgba(255, 255, 255, 0.2);
	overflow: hidden;
	font-weight: 600;
}

/* Shimmer sweep effect */
.btn-animated::after {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	animation: btn-shimmer 3s ease-in-out infinite;
}

.btn-animated:hover {
	transform: scale(1.03) translateY(-2px);
	box-shadow:
		0 10px 24px rgba(105, 59, 37, 0.4),
		0 12px 22px rgba(0, 0, 0, 0.25);
}

.btn-animated:hover::after {
	animation: none;
	opacity: 0;
}

@keyframes btn-bounce-glow {
	0%,
	100% {
		box-shadow:
			0 0 20px rgba(204, 85, 0, 0.5),
			0 0 40px rgba(204, 85, 0, 0.2),
			0 4px 15px rgba(0, 0, 0, 0.2);
		transform: translateY(0) scale(1);
	}
	50% {
		box-shadow:
			0 0 30px rgba(204, 85, 0, 0.7),
			0 0 60px rgba(204, 85, 0, 0.35),
			0 8px 25px rgba(0, 0, 0, 0.25);
		transform: translateY(-4px) scale(1.03);
	}
}

@keyframes btn-shimmer {
	0% {
		left: -100%;
	}
	50%,
	100% {
		left: 100%;
	}
}

.btn-secondary {
	background: linear-gradient(145deg, #c89e57 0%, #b18643 50%, #967037 100%);
	color: var(--color-charcoal) !important;
	border-color: #8b6631;
	box-shadow:
		0 6px 20px rgba(150, 112, 55, 0.35),
		0 3px 8px rgba(0, 0, 0, 0.2),
		inset 0 1px 0 rgba(255, 255, 255, 0.35),
		inset 0 -3px 0 rgba(0, 0, 0, 0.15);
}

.btn-secondary:hover {
	background: linear-gradient(145deg, #d4ad6c 0%, #bd9453 50%, #a47d42 100%);
	border-color: #9f773d;
	color: var(--color-charcoal) !important;
	box-shadow:
		0 12px 28px rgba(164, 125, 66, 0.4),
		0 6px 15px rgba(0, 0, 0, 0.2),
		inset 0 2px 0 rgba(255, 255, 255, 0.45),
		inset 0 -3px 0 rgba(0, 0, 0, 0.1);
}

.btn-outline {
	background: linear-gradient(145deg, #3a3a3a 0%, var(--color-charcoal) 100%);
	color: var(--color-cream);
	border-color: var(--color-charcoal);
	box-shadow:
		0 4px 15px rgba(0, 0, 0, 0.1),
		inset 0 1px 0 rgba(255, 255, 255, 0.1),
		inset 0 -1px 0 rgba(0, 0, 0, 0.05);
}

.btn-outline:hover {
	background: linear-gradient(145deg, var(--color-charcoal) 0%, #3a3a3a 100%);
	color: var(--color-cream);
	box-shadow:
		0 10px 30px rgba(0, 0, 0, 0.25),
		inset 0 1px 0 rgba(255, 255, 255, 0.1),
		inset 0 -2px 0 rgba(0, 0, 0, 0.2);
}

.section-dark .btn-outline {
	color: var(--color-cream);
	border-color: #80553c;
	background: linear-gradient(145deg, rgba(96, 60, 43, 0.72) 0%, rgba(66, 42, 30, 0.8) 100%);
	box-shadow:
		0 6px 20px rgba(66, 42, 30, 0.32),
		0 3px 8px rgba(0, 0, 0, 0.25),
		inset 0 1px 0 rgba(255, 255, 255, 0.1),
		inset 0 -2px 0 rgba(0, 0, 0, 0.2);
}

.section-dark .btn-outline:hover {
	background: linear-gradient(145deg, #74503a 0%, #614230 50%, #4f3628 100%);
	border-color: #8f6547;
	color: var(--color-white);
	box-shadow:
		0 12px 26px rgba(79, 54, 40, 0.4),
		0 6px 15px rgba(0, 0, 0, 0.3),
		inset 0 1px 0 rgba(255, 255, 255, 0.15),
		inset 0 -2px 0 rgba(0, 0, 0, 0.15);
}

/* Red accent outline button for hero/dark sections */
.btn-outline-red {
	background: linear-gradient(145deg, rgba(139, 37, 0, 0.8) 0%, rgba(100, 25, 0, 0.9) 100%);
	color: var(--color-cream);
	border: 2px solid var(--color-bbq-red);
	box-shadow:
		0 6px 20px rgba(139, 37, 0, 0.4),
		0 3px 8px rgba(0, 0, 0, 0.25),
		inset 0 1px 0 rgba(255, 255, 255, 0.12),
		inset 0 -2px 0 rgba(0, 0, 0, 0.2);
}

.btn-outline-red:hover {
	background: linear-gradient(145deg, #d63031 0%, var(--color-bbq-red) 50%, #8b2500 100%);
	border-color: var(--color-burnt-orange);
	color: var(--color-white);
	box-shadow:
		0 14px 40px rgba(204, 85, 0, 0.55),
		0 8px 20px rgba(0, 0, 0, 0.3),
		inset 0 2px 0 rgba(255, 255, 255, 0.2),
		inset 0 -2px 0 rgba(0, 0, 0, 0.12);
}

.hero .btn-outline {
	color: var(--color-cream);
	border-color: var(--color-bbq-red);
	background: rgba(139, 37, 0, 0.6);
}

.hero .btn-outline:hover {
	background: var(--color-bbq-red);
	border-color: var(--color-burnt-orange);
	color: var(--color-white);
	box-shadow: 0 0 20px rgba(204, 85, 0, 0.4);
}

/* Dark filled button - for lighter backgrounds */
.btn-outline-dark {
	background: linear-gradient(180deg, #9a7b1a 0%, #7a6212 100%);
	color: #fff;
	border: 2px solid #8b6914;
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.btn-outline-dark:hover {
	background: linear-gradient(180deg, #b08e1f 0%, #8b6914 100%);
	color: #fff;
	border-color: #6b5210;
	box-shadow: 0 5px 15px rgba(139, 105, 20, 0.4);
}

.btn-outline-dark svg {
	vertical-align: middle;
	margin-right: 0.25rem;
}

/* Small button variant */
.btn-sm {
	padding: 0.5rem 1rem;
	font-size: 0.9rem;
}

.btn-white {
	background: var(--color-white);
	color: var(--color-charcoal);
	border-color: var(--color-white);
}

.btn-white:hover {
	background: var(--color-cream);
	border-color: var(--color-cream);
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--color-charcoal);
	color: var(--color-cream);
	padding-top: var(--header-height);
	margin-top: 0;
	overflow: hidden;
}

/* Video Background Container */
.hero-video-container {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
}

.hero-video {
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	transform: translate(-50%, -50%);
	object-fit: cover;
	z-index: 1;
}

/* Fallback background when no video - sits behind video */
.hero-bg-fallback {
	position: absolute;
	inset: 0;
	z-index: 0;
	background: linear-gradient(135deg, var(--color-charcoal) 0%, var(--color-wood) 100%);
	background-image: var(--bg-wood-texture);
	background-size: cover;
	background-position: center;
}

/* Dark overlay for text legibility - always visible */
.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 0.5) 100%);
	z-index: 2;
	pointer-events: none;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%);
	z-index: 3;
}

.hero-content {
	position: relative;
	text-align: center;
	padding: var(--space-xl);
	z-index: 10;
}

/* Hero Logo */
.hero-logo {
	width: auto;
	max-width: 400px;
	height: auto;
	margin-bottom: var(--space-lg);
	filter: drop-shadow(0 4px 30px rgba(0, 0, 0, 0.8));
}

.hero-title {
	font-family: var(--font-hero);
	font-size: clamp(2.5rem, 8vw, 5rem);
	margin-bottom: var(--space-sm);
	text-shadow:
		4px 4px 12px rgba(0, 0, 0, 0.8),
		0 0 40px rgba(0, 0, 0, 0.5);
}

.hero-tagline {
	font-family: var(--font-accent);
	font-size: 3rem;
	color: var(--color-mustard);
	margin-bottom: var(--space-xl);
	letter-spacing: 4px;
	text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
	overflow: hidden;
	white-space: nowrap;
}

.hero-tagline .char {
	display: inline-block;
	opacity: 0;
}

@media (max-width: 768px) {
	.hero-tagline {
		font-size: 1.8rem;
		white-space: normal;
		letter-spacing: 2px;
	}
}

.status-banners {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-md);
	justify-content: center;
	margin-bottom: var(--space-xl);
	/* Animation handled by GSAP to prevent flicker */
}

.status-banner {
	background: linear-gradient(160deg, rgba(35, 35, 35, 0.95) 0%, rgba(15, 15, 15, 0.98) 100%);
	padding: var(--space-lg) var(--space-xl);
	border-radius: 16px;
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 3px solid;
	transition:
		transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
		box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
		border-color 0.3s ease;
	text-align: center;
	min-width: 260px;
	position: relative;
	overflow: hidden;
}

.status-banner::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 50%;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, transparent 100%);
	pointer-events: none;
	border-radius: 13px 13px 0 0;
}

.status-banner:hover {
	transform: translateY(-8px) scale(1.03);
}

.status-live {
	border-color: var(--color-success);
	animation: pulse-border 2s infinite;
	box-shadow:
		0 10px 40px rgba(0, 0, 0, 0.5),
		0 0 30px rgba(76, 175, 80, 0.35),
		0 0 60px rgba(76, 175, 80, 0.15),
		inset 0 0 20px rgba(76, 175, 80, 0.1);
}

.status-upcoming {
	border-color: #bb8b4a;
}

.status-upcoming:hover {
	border-color: #c89b5d;
}

.status-open {
	border-color: #a7774a;
}

.status-open:hover {
	border-color: #b8895d;
}

.status-closed {
	border-color: #925646;
	box-shadow:
		0 10px 40px rgba(0, 0, 0, 0.5),
		0 0 20px rgba(146, 86, 70, 0.2),
		0 0 40px rgba(146, 86, 70, 0.08),
		inset 0 0 12px rgba(146, 86, 70, 0.06);
}

.status-closed:hover {
	border-color: #a66d5b;
	box-shadow:
		0 20px 60px rgba(0, 0, 0, 0.6),
		0 0 34px rgba(166, 109, 91, 0.32),
		0 0 60px rgba(166, 109, 91, 0.12),
		inset 0 0 20px rgba(166, 109, 91, 0.08);
}

.status-badge {
	display: inline-block;
	font-family: var(--font-heading);
	font-size: 1.35rem;
	text-transform: uppercase;
	letter-spacing: 4px;
	font-weight: 400;
	color: var(--color-cream);
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
	padding-bottom: var(--space-xs);
	border-bottom: 2px solid rgba(255, 255, 255, 0.1);
	margin-bottom: var(--space-xs);
}

.status-badge.pulse {
	animation: pulse 1.5s infinite;
}

.status-location {
	margin: var(--space-sm) 0 0;
	font-size: 1.15rem;
	font-family: var(--font-body);
	font-weight: 600;
	color: #fff;
	letter-spacing: 0.5px;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.status-notes {
	font-family: var(--font-note);
	color: var(--color-cream-dark);
	font-size: 0.9rem;
}

.status-time {
	font-family: var(--font-note);
	font-size: 1rem;
	font-weight: 600;
	color: var(--color-mustard);
	margin-top: var(--space-xs);
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-md);
	justify-content: center;
	/* Animation handled by GSAP to prevent flicker */
}

@keyframes pulse {
	0%,
	100% {
		opacity: 1;
	}
	50% {
		opacity: 0.6;
	}
}

@keyframes pulse-border {
	0%,
	100% {
		box-shadow: 0 0 0 0 rgba(46, 125, 50, 0.4);
	}
	50% {
		box-shadow: 0 0 0 10px rgba(46, 125, 50, 0);
	}
}

/* --------------------------------------------------------------------------
   Hero - Live Truck Mode (Priority Stacking)
   -------------------------------------------------------------------------- */
.hero-truck-live {
	min-height: 100vh;
	background: linear-gradient(135deg, #1a0f00 0%, #3d1f00 50%, #1a0f00 100%);
}

.hero-truck-live::after {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 50% 30%, rgba(255, 85, 0, 0.15) 0%, transparent 60%);
	pointer-events: none;
}

.hero-live-truck {
	position: relative;
	z-index: 2;
}

.live-badge-hero {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	background: #11d911;
	background: radial-gradient(circle, rgba(17, 217, 17, 1) 0%, rgba(0, 110, 9, 1) 100%);
	color: white;
	font-family: var(--font-heading);
	font-size: 1.2rem;
	font-weight: 700;
	padding: 0.75rem 2rem;
	border-radius: 50px;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: var(--space-lg);
	box-shadow: 0 4px 30px rgba(0, 191, 61, 0.4);
	position: relative;
	overflow: visible;
}

.live-pulse-ring {
	position: absolute;
	left: 1.5rem;
	width: 12px;
	height: 12px;
	background: white;
	border-radius: 50%;
	animation: live-pulse-ring 1.5s infinite;
}

@keyframes live-pulse-ring {
	0% {
		box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
	}
	70% {
		box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
	}
}

.hero-title-live {
	font-size: clamp(2.5rem, 10vw, 5rem);
	color: #fff;
	text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.5);
	margin-bottom: var(--space-sm);
}

.hero-address-live {
	font-size: clamp(1.5rem, 4vw, 2.5rem);
	color: var(--color-mustard);
	font-family: var(--font-heading);
	text-transform: uppercase;
	margin-bottom: var(--space-md);
}

.hero-notes-live {
	font-size: 1.2rem;
	color: var(--color-cream);
	font-style: italic;
	opacity: 0.9;
	margin-bottom: var(--space-sm);
}

/* Hero Status Marquee */
.hero-status-marquee {
	background: rgba(251, 191, 36, 0.2);
	border: 1px solid rgba(251, 191, 36, 0.4);
	border-radius: 8px;
	padding: 0.75rem 0;
	margin: 1.5rem auto;
	max-width: 500px;
	overflow: hidden;
	position: relative;
}

.hero-status-marquee::before,
.hero-status-marquee::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	width: 40px;
	z-index: 2;
	pointer-events: none;
}

.hero-status-marquee::before {
	left: 0;
	background: linear-gradient(to right, rgba(0, 0, 0, 0.8), transparent);
}

.hero-status-marquee::after {
	right: 0;
	background: linear-gradient(to left, rgba(0, 0, 0, 0.8), transparent);
}

/* Marquee Track & Content - GSAP Powered */
.marquee-track {
	display: flex;
	width: max-content;
	gap: 3rem;
}

.marquee-text {
	flex-shrink: 0;
	white-space: nowrap;
	color: #fbbf24;
	font-weight: 700;
	font-size: 1rem;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
	padding: 0 1.5rem;
}

.hero-time-live {
	font-size: 1rem;
	color: var(--color-cream-dark);
	margin-bottom: var(--space-xl);
}

.hero-actions-live {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-md);
	justify-content: center;
	margin-bottom: var(--space-xl);
}

.hero-actions-live .btn {
	font-size: 1.1rem;
	padding: 1rem 2.5rem;
}

/* Restaurant mini card (shown below live truck) */
.hero-restaurant-mini {
	margin-top: var(--space-xl);
	padding: var(--space-lg);
	background: rgba(0, 0, 0, 0.4);
	backdrop-filter: blur(10px);
	border-radius: var(--radius-lg);
	border: 1px solid rgba(255, 255, 255, 0.1);
	max-width: 400px;
	margin-left: auto;
	margin-right: auto;
}

.mini-label {
	font-size: 0.75rem;
	color: var(--color-cream-dark);
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: var(--space-sm);
}

.mini-title {
	font-family: var(--font-heading);
	font-size: 1.2rem;
	color: var(--color-cream);
	margin-bottom: var(--space-sm);
}

.mini-status {
	display: inline-block;
	font-size: 0.85rem;
	padding: 0.25rem 0.75rem;
	border-radius: 20px;
	margin-bottom: var(--space-sm);
}

.mini-status.open {
	background: rgba(46, 125, 50, 0.3);
	color: #4caf50;
}

.mini-status.closed {
	background: rgba(198, 40, 40, 0.3);
	color: #ef5350;
}

.mini-hours {
	font-size: 0.9rem;
	color: var(--color-cream-dark);
	margin-bottom: var(--space-md);
}

.hero-restaurant-mini .btn {
	font-size: 0.85rem;
	padding: 0.5rem 1.5rem;
}

/* --------------------------------------------------------------------------
   Map Containers
   -------------------------------------------------------------------------- */
.map-container {
	position: relative;
	width: 100%;
	height: 250px;
	border-radius: var(--radius-md);
	overflow: hidden;
	margin-bottom: var(--space-md);
	border: 2px solid rgba(255, 255, 255, 0.1);
}

.map-container.large {
	height: 350px;
}

.truck-map-container {
	margin-top: var(--space-lg);
	padding: var(--space-md);
	background: rgba(0, 0, 0, 0.3);
	border-radius: var(--radius-lg);
}

.truck-map-container h3 {
	color: var(--color-cream);
	font-size: 1rem;
	margin-bottom: var(--space-md);
}

.truck-map {
	width: 100%;
	height: 250px;
	border-radius: var(--radius-md);
}

/* Restaurant map */
.restaurant-map-container {
	margin-top: var(--space-lg);
}

.restaurant-map {
	width: 100%;
	height: 200px;
	border-radius: var(--radius-md);
	border: 2px solid var(--color-cream-dark);
}

/* Schedule card map */
.schedule-card .map-container {
	height: 150px;
	margin-top: var(--space-sm);
}

/* Contact page map */
.contact-map {
	height: 400px;
	border-radius: var(--radius-lg);
}

/* Leaflet overrides for theme */
.leaflet-popup-content-wrapper {
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-lg);
}

.leaflet-popup-content {
	font-family: var(--font-body);
	font-size: 0.9rem;
	line-height: 1.5;
}

/* --------------------------------------------------------------------------
   Animation Utilities
   -------------------------------------------------------------------------- */
[data-animate] {
	opacity: 0;
	visibility: hidden;
}

[data-animate].gsap-ready {
	visibility: visible;
}

.site-header.scrolled {
	background: rgba(26, 26, 26, 0.98);
	backdrop-filter: blur(10px);
}

/* --------------------------------------------------------------------------
   Food Truck Section
   -------------------------------------------------------------------------- */

.truck-section-icon,
.restaurant-section-icon {
	display: block;
	margin: 0 auto 0.5rem;
	width: 600px;
	max-width: 100%;
	height: auto;
	will-change: transform;
}

@media (max-width: 768px) {
	.truck-section-icon,
	.restaurant-section-icon {
		width: 75vw;
		max-width: none;
	}
}

/* Truck shake animation */
@keyframes truck-idle-shake {
	0%,
	100% {
		transform: translateY(0) rotate(0deg);
	}
	25% {
		transform: translateY(-2px) rotate(0.3deg);
	}
	50% {
		transform: translateY(0) rotate(-0.2deg);
	}
	75% {
		transform: translateY(-1px) rotate(0.2deg);
	}
}

.truck-section-icon.idle-shake {
	animation: truck-idle-shake 0.4s ease-in-out;
}

.truck-live-wrapper {
	position: relative;
	max-width: 550px;
	margin: 0 auto var(--space-xl);
}

.truck-live-card {
	position: relative;
	background: #111;
	color: var(--color-white);
	padding: 2.5rem 2rem;
	border-radius: 12px;
	text-align: center;
	box-shadow: inset 0 0 0 1px rgba(74, 222, 128, 0.2);
	z-index: 0;
	overflow: visible;
}

/* Animated border using clip rect technique */
.truck-live-card::before,
.truck-live-card::after {
	content: "";
	position: absolute;
	top: -1%;
	bottom: -1%;
	left: -1%;
	right: -1%;
	border-radius: 13px;
	box-shadow: inset 0 0 0 2px #4ade80;
	z-index: -1;
	animation: clipMe 6s linear infinite;
}

.truck-live-card::after {
	animation-delay: -2s;
}

@keyframes clipMe {
	0%,
	100% {
		clip: rect(0px, 570px, 2px, 0px);
	}
	25% {
		clip: rect(0px, 2px, 570px, 0px);
	}
	50% {
		clip: rect(568px, 570px, 570px, 0px);
	}
	75% {
		clip: rect(0px, 570px, 570px, 568px);
	}
}

/* Subtle ambient glow — much less aggressive */
.truck-live-wrapper::before {
	content: "";
	position: absolute;
	inset: -4px;
	border-radius: 14px;
	background: radial-gradient(ellipse at center, rgba(74, 222, 128, 0.12) 0%, transparent 70%);
	z-index: -2;
	pointer-events: none;
}

@keyframes glowShift {
	0%,
	100% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
}

.live-indicator {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	background: #22c55e;
	color: #fff;
	padding: 0.6rem 1.5rem;
	border-radius: 50px;
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 0.85rem;
	margin-bottom: 1.5rem;
	text-transform: uppercase;
	letter-spacing: 3px;
}

.live-indicator.pulse::before {
	content: "";
	width: 8px;
	height: 8px;
	background: #fff;
	border-radius: 50%;
	animation: blink 1s ease-in-out infinite;
}

@keyframes blink {
	0%,
	100% {
		opacity: 1;
	}
	50% {
		opacity: 0.3;
	}
}

.truck-live-card h3 {
	font-size: 2.5rem;
	font-weight: 800;
	margin-bottom: 0.75rem;
	color: #fff;
	letter-spacing: -0.02em;
}

.truck-address {
	font-size: 1.1rem;
	margin-bottom: 0.5rem;
	color: #a1a1aa;
	font-weight: 400;
}

.truck-notes {
	font-style: italic;
	color: #71717a;
	font-size: 0.95rem;
	margin-bottom: 0.5rem;
}

/* Status Marquee (Food Truck Section) */
.status-marquee {
	background: rgba(251, 191, 36, 0.15);
	border: 1px solid rgba(251, 191, 36, 0.3);
	border-radius: 6px;
	padding: 0.5rem 0;
	margin: 1rem 0;
	overflow: hidden;
	position: relative;
}

.status-marquee::before,
.status-marquee::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	width: 30px;
	z-index: 2;
	pointer-events: none;
}

.status-marquee::before {
	left: 0;
	background: linear-gradient(to right, #222, transparent);
}

.status-marquee::after {
	right: 0;
	background: linear-gradient(to left, #222, transparent);
}

.status-marquee .marquee-text {
	font-size: 0.9rem;
}

.truck-time {
	display: inline-block;
	margin: 1.25rem 0;
	font-size: 0.9rem;
	padding: 0.5rem 1rem;
	background: rgba(74, 222, 128, 0.1);
	border: 1px solid rgba(74, 222, 128, 0.3);
	border-radius: 6px;
	color: #4ade80;
	font-weight: 500;
}

.truck-live-card .btn {
	background: #4ade80;
	color: #0a0a0a;
	border: none;
	font-weight: 700;
	padding: 0.75rem 2rem;
	font-size: 0.9rem;
	transition: all 0.2s ease;
}

.truck-live-card .btn:hover {
	background: #22c55e;
	transform: translateY(-2px);
	box-shadow: 0 10px 40px rgba(74, 222, 128, 0.3);
}

.truck-status-card {
	background: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(10px);
	padding: var(--space-lg) var(--space-xl);
	border-radius: var(--radius-md);
	text-align: center;
	max-width: 450px;
	margin: 0 auto var(--space-xl);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.truck-status {
	font-size: 1.1rem;
	color: var(--color-smoke);
	margin-bottom: 0.5rem;
}

.section-dark .truck-status {
	color: var(--color-cream-dark);
}

.truck-schedule {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: var(--space-md);
	max-width: 900px;
	margin: 0 auto;
}

.schedule-card {
	background: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--radius-md);
	padding: var(--space-md);
	display: flex;
	gap: var(--space-md);
	align-items: flex-start;
	will-change: transform, box-shadow;
	transition: none; /* Let GSAP handle */
}

.schedule-date {
	background: linear-gradient(135deg, var(--color-burnt-orange) 0%, var(--color-burnt-orange-dark) 100%);
	color: var(--color-white);
	padding: var(--space-sm) var(--space-md);
	border-radius: var(--radius-sm);
	text-align: center;
	min-width: 70px;
	box-shadow: 0 4px 15px rgba(204, 85, 0, 0.3);
}

.date-day {
	display: block;
	font-size: 0.75rem;
	text-transform: uppercase;
}

.date-num {
	display: block;
	font-size: 1.5rem;
	font-weight: 700;
	font-family: var(--font-heading);
}

.date-month {
	display: block;
	font-size: 0.75rem;
	text-transform: uppercase;
}

.schedule-info h4 {
	font-size: 1.1rem;
	margin-bottom: var(--space-xs);
}

.schedule-address,
.schedule-time {
	font-size: 0.9rem;
	margin-bottom: var(--space-xs);
	color: var(--color-cream-dark);
}

.schedule-notes {
	font-size: 0.85rem;
	font-style: italic;
	color: var(--color-mustard);
}

.no-stops {
	text-align: center;
	padding: var(--space-xl);
	color: #ffe200;
	font-weight: 900;
}

.section-dark .no-stops {
	color: var(--color-cream-dark);
}

/* --------------------------------------------------------------------------
   Restaurant Section
   -------------------------------------------------------------------------- */
.restaurant-info {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: var(--space-xl);
	max-width: 900px;
	margin: 0 auto;
}

.info-card,
.hours-card {
	background: var(--color-white);
	padding: var(--space-xl);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-md);
}

.restaurant-status {
	display: flex;
	align-items: center;
	gap: var(--space-sm);
	font-family: var(--font-heading);
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: var(--space-lg);
	padding: var(--space-md);
	border-radius: var(--radius-sm);
}

.restaurant-status.open {
	background: rgba(46, 125, 50, 0.1);
	color: var(--color-success);
}

.restaurant-status.closed {
	background: rgba(198, 40, 40, 0.1);
	color: var(--color-error);
}

.status-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: currentColor;
}

.restaurant-status.open .status-dot {
	animation: pulse 1.5s infinite;
}

.restaurant-details {
	display: flex;
	flex-direction: column;
	gap: var(--space-md);
}

.detail-item {
	margin: 0;
}

.detail-item a {
	color: var(--color-charcoal);
}

.detail-item a:hover {
	color: var(--color-burnt-orange);
}

.hours-card h3 {
	text-align: center;
	margin-bottom: var(--space-lg);
}

.hours-list {
	display: flex;
	flex-direction: column;
	gap: var(--space-sm);
}

.hours-row {
	display: flex;
	justify-content: space-between;
	padding: var(--space-sm);
	border-radius: var(--radius-sm);
}

.hours-row.today {
	background: rgba(212, 160, 23, 0.15);
	font-weight: 600;
}

.hours-row .day {
	font-weight: 500;
}

/* --------------------------------------------------------------------------
   Menu Section
   -------------------------------------------------------------------------- */
.menu-cta {
	text-align: center;
	margin-bottom: var(--space-xl);
}

.menu-cta .btn + .btn {
	margin-left: var(--space-sm);
}

.menu-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: var(--space-xl);
}

.menu-category {
	background: rgba(255, 255, 255, 0.05);
	border-radius: var(--radius-md);
	padding: var(--space-lg);
}

.category-title {
	font-size: 1.5rem;
	color: var(--color-mustard);
	margin-bottom: var(--space-lg);
	padding-bottom: var(--space-sm);
	border-bottom: 2px solid var(--color-mustard);
}

.menu-items {
	display: flex;
	flex-direction: column;
	gap: var(--space-md);
}

.menu-item {
	padding: var(--space-sm) 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-item:last-child {
	border-bottom: none;
}

.menu-item.sold-out {
	opacity: 0.6;
}

.item-header {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: var(--space-md);
}

.item-name {
	font-family: var(--font-menu);
	font-size: 1.2rem;
	letter-spacing: 0.5px;
}

.item-price {
	font-family: var(--font-accent);
	font-size: 1.1rem;
	color: var(--color-mustard);
	white-space: nowrap;
}

.item-description {
	font-size: 0.9rem;
	color: var(--color-cream-dark);
	margin: var(--space-xs) 0 0;
}

.sold-out-badge {
	display: inline-block;
	background: var(--color-error);
	color: var(--color-white);
	font-family: var(--font-note);
	font-size: 0.8rem;
	padding: 2px 10px;
	border-radius: 10px;
	text-transform: uppercase;
	margin-top: var(--space-xs);
}

/* --------------------------------------------------------------------------
   Menu Favorites Section (Homepage)
   -------------------------------------------------------------------------- */
.section-subtitle {
	text-align: center;
	font-family: var(--font-note);
	font-size: 1.2rem;
	color: var(--color-smoke);
	margin-top: calc(var(--space-lg) * -1);
	margin-bottom: var(--space-xl);
}

.favorites-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--space-lg);
	margin-bottom: var(--space-xl);
}

@media (max-width: 600px) {
	.favorites-grid {
		grid-template-columns: 1fr;
	}
}

.favorite-card {
	background: #ffffff;
	background: linear-gradient(177deg, rgb(255 255 255) 53%, rgb(227 215 190) 100%);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	transform-style: preserve-3d;
	perspective: 1000px;
	will-change: transform, box-shadow;
	transition: none; /* Let GSAP handle transitions */
	position: relative;
}

.favorite-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--color-burnt-orange), var(--color-mustard));
	opacity: 0;
	transition: opacity 0.3s ease;
}

.favorite-card:hover::before {
	opacity: 1;
}

.favorite-image {
	position: relative;
	height: 220px;
	background: var(--color-cream-dark);
	overflow: hidden;
}

.favorite-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	will-change: transform;
}

.favorite-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 4rem;
	background: linear-gradient(135deg, var(--color-charcoal) 0%, var(--color-wood) 100%);
}

.favorite-content {
	padding: var(--space-lg);
	position: relative;
}

.favorite-name {
	font-family: var(--font-heading);
	font-size: 1.5rem;
	color: var(--color-charcoal);
	margin-bottom: var(--space-sm);
	letter-spacing: 1px;
}

.favorite-description {
	font-size: 0.95rem;
	color: var(--color-smoke);
	margin-bottom: var(--space-md);
	line-height: 1.6;
}

.favorite-price {
	display: inline-block;
	font-family: var(--font-accent);
	font-size: 1.4rem;
	color: var(--color-burnt-orange);
	font-weight: 700;
	position: relative;
}

.favorite-price-stack {
	font-size: 1.05rem;
	letter-spacing: 0.5px;
	line-height: 1.4;
}

.favorite-price::before {
	content: "";
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 100%;
	height: 2px;
	background: var(--color-burnt-orange);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.favorite-card:hover .favorite-price::before {
	transform: scaleX(1);
}

.menu-actions {
	text-align: center;
	display: flex;
	justify-content: center;
	gap: var(--space-md);
	flex-wrap: wrap;
}

/* Fire video background for fan favorites */
.section-favorites-fire {
	position: relative;
	overflow: hidden;
	background: #050505;
}

.favorites-fire-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
	/* filter: brightness(0.82) contrast(1.08) saturate(1.05); */
	pointer-events: none;
}

.section-favorites-fire::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.48) 0%, rgba(0, 0, 0, 0.62) 100%);
	z-index: 1;
	pointer-events: none;
}

.section-favorites-fire > .container {
	position: relative;
	z-index: 2;
}

/* --------------------------------------------------------------------------
   Events Section
   -------------------------------------------------------------------------- */
.events-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: var(--space-lg);
	max-width: 1000px;
	margin: 0 auto;
}

.event-card {
	background: var(--color-white);
	border-radius: var(--radius-md);
	overflow: hidden;
	box-shadow: var(--shadow-md);
	transition:
		transform var(--transition),
		box-shadow var(--transition);
}

.event-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-lg);
}

.event-image {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.event-content {
	padding: var(--space-lg);
}

.event-content h3 {
	font-size: 1.3rem;
	margin-bottom: var(--space-sm);
}

.event-date {
	color: var(--color-burnt-orange);
	font-weight: 600;
	margin-bottom: var(--space-sm);
}

.event-description {
	color: var(--color-smoke);
	font-size: 0.95rem;
}

/* --------------------------------------------------------------------------
   Gallery Section
   -------------------------------------------------------------------------- */
.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: var(--space-md);
}

.gallery-item {
	aspect-ratio: 1;
	overflow: hidden;
	border-radius: var(--radius-md);
}

.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--transition);
}

.gallery-item:hover img {
	transform: scale(1.05);
}

/* --------------------------------------------------------------------------
   About Section
   -------------------------------------------------------------------------- */
.about-wrapper {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: var(--space-xl);
	align-items: center;
	max-width: 1000px;
	margin: 0 auto;
}

@media (max-width: 768px) {
	.about-wrapper {
		grid-template-columns: 1fr;
		text-align: center;
	}
}

.about-logo {
	text-align: center;
}

.about-logo img {
	max-width: 250px;
	height: auto;
	filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.2));
}

@media (max-width: 768px) {
	.about-logo img {
		max-width: 150px;
	}
}

.about-content {
	font-size: 1.1rem;
	line-height: 1.8;
	max-width: 100%;
	overflow-wrap: break-word;
	word-wrap: break-word;
}

.about-content .section-title {
	text-align: center;
}

.about-content .section-title::after {
	margin-left: auto;
	margin-right: auto;
}

.website-cost-main {
	padding-top: calc(var(--header-height) + var(--space-xl));
	min-height: 100vh;
	width: 100%;
	overflow-x: hidden;
}

#website-cost-guide .container {
	max-width: 920px;
	width: 100%;
}

#website-cost-guide .about-content {
	max-width: 820px;
	margin: 0 auto;
	font-size: 1.05rem;
	line-height: 1.75;
}

#website-cost-guide .subsection-title {
	text-align: left;
	margin: var(--space-xl) 0 var(--space-sm);
	font-size: clamp(1.2rem, 3vw, 1.6rem);
	letter-spacing: 1px;
	word-break: break-word;
	overflow-wrap: anywhere;
}

@media (max-width: 768px) {
	.website-cost-main {
		padding-top: calc(var(--header-height) + var(--space-lg));
	}

	#website-cost-guide .section-title {
		letter-spacing: 1.5px;
		margin-bottom: var(--space-lg);
	}

	#website-cost-guide .about-content {
		font-size: 1rem;
		line-height: 1.7;
	}

	#website-cost-guide .subsection-title {
		margin: var(--space-lg) 0 var(--space-sm);
	}
}

.about-cta {
	margin-top: var(--space-lg);
	display: flex;
	flex-direction: column;
	gap: var(--space-sm);
	align-items: center;
	max-width: 320px;
	margin-left: auto;
	margin-right: auto;
}

.about-cta .btn {
	width: 100%;
	justify-content: center;
}

@media (max-width: 768px) {
	.about-cta {
		align-items: center;
		max-width: 100%;
	}

	.about-cta .btn {
		max-width: 320px;
	}
}

/* --------------------------------------------------------------------------
   Page Hero (for subpages)
   -------------------------------------------------------------------------- */
.page-hero {
	padding: calc(var(--header-height) + var(--space-xxl)) var(--space-md) var(--space-xxl);
	text-align: center;
	position: relative;
}

.page-hero-dark {
	background: var(--color-charcoal);
	background-image: var(--bg-wood-texture);
	background-size: cover;
	background-position: center;
	color: var(--color-cream);
}

.page-hero-dark::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3));
	pointer-events: none;
}

.page-hero .container {
	position: relative;
	z-index: 1;
}

.page-hero-logo {
	max-width: 150px;
	height: auto;
	margin-bottom: var(--space-lg);
	filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.5));
}

.page-title {
	font-family: var(--font-hero);
	font-size: clamp(2.5rem, 6vw, 4rem);
	margin-bottom: var(--space-sm);
	text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.5);
}

.page-subtitle {
	font-family: var(--font-note);
	font-size: 1.3rem;
	opacity: 0.9;
}

/* --------------------------------------------------------------------------
   Full Menu Page
   -------------------------------------------------------------------------- */
.full-menu-grid {
	display: flex;
	flex-direction: column;
	gap: var(--space-xxl);
}

.menu-section {
	background: var(--color-white);
	border-radius: var(--radius-lg);
	padding: var(--space-xl);
	box-shadow: var(--shadow-md);
}

.menu-section-title {
	font-family: var(--font-heading);
	font-size: 2rem;
	color: var(--color-burnt-orange);
	margin-bottom: var(--space-sm);
	padding-bottom: var(--space-sm);
	border-bottom: 3px solid var(--color-mustard);
}

.menu-section-desc {
	font-family: var(--font-note);
	color: var(--color-smoke);
	margin-bottom: var(--space-lg);
}

.menu-section-items {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: var(--space-lg);
}

.full-menu-item {
	display: flex;
	gap: var(--space-md);
	padding: var(--space-md);
	border-radius: var(--radius-md);
	background: var(--color-cream);
	transition:
		transform var(--transition),
		box-shadow var(--transition);
}

.full-menu-item:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-sm);
}

.full-menu-item.sold-out {
	opacity: 0.6;
}

.full-menu-item-image {
	flex-shrink: 0;
	width: 100px;
	height: 100px;
	border-radius: var(--radius-md);
	overflow: hidden;
}

.full-menu-item-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.full-menu-item-content {
	flex: 1;
}

.full-menu-item-header {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: var(--space-sm);
	margin-bottom: var(--space-xs);
}

.full-menu-item-name {
	font-family: var(--font-menu);
	font-size: 1.3rem;
	color: var(--color-charcoal);
	margin: 0;
}

.full-menu-item-price {
	font-family: var(--font-accent);
	font-size: 1.2rem;
	color: var(--color-burnt-orange);
	white-space: nowrap;
}

.full-menu-item-description {
	font-size: 0.9rem;
	color: var(--color-smoke);
	line-height: 1.5;
	margin: 0;
}

/* Menu Gallery */
.menu-gallery-section {
	margin-top: var(--space-xxl);
	padding-top: var(--space-xxl);
	border-top: 2px dashed var(--color-wood-light);
}

.menu-gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: var(--space-lg);
}

.menu-gallery-placeholder {
	aspect-ratio: 1;
	background: var(--color-cream);
	border: 3px dashed var(--color-wood-light);
	border-radius: var(--radius-lg);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: var(--color-smoke);
}

.menu-gallery-placeholder span {
	font-size: 3rem;
	margin-bottom: var(--space-sm);
}

.menu-gallery-placeholder p {
	font-family: var(--font-note);
	margin: 0;
}

/* --------------------------------------------------------------------------
   Chalkboard Menu Styling
   -------------------------------------------------------------------------- */
.section-chalkboard {
	background-color: #1a1a1a;
	background-image: var(--bg-newchalkboard);
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	color: #f5f5f5;
	position: relative;
	padding: var(--space-xxl) 0;
}

/* Fix blurry background on mobile - fixed attachment not supported */
@media (max-width: 1024px) {
	.section-chalkboard {
		background-image: var(--bg-chalkboard-dark);
		justify-content: center;
		background-attachment: scroll;
		background-size: 100% auto;
		background-position: top center;
		background-repeat: repeat-y;
	}

	.page-hero-dark {
		background-size: 100% auto;
		background-position: top center;
		background-repeat: no-repeat;
	}
}

.section-chalkboard::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.3);
	pointer-events: none;
}

.section-chalkboard > .container {
	position: relative;
	z-index: 1;
}

/* Chalkboard menu grid */
.chalkboard-menu-grid {
	display: flex;
	flex-direction: column;
	gap: var(--space-xl);
}

.chalkboard-section {
	background: rgba(0, 0, 0, 0.4);
	border: 3px solid rgba(255, 255, 255, 0.15);
	border-radius: var(--radius-lg);
	padding: var(--space-xl);
	backdrop-filter: blur(2px);
	position: relative;
}

/* Chalk dust effect on corners */
.chalkboard-section::before {
	content: "";
	position: absolute;
	top: -2px;
	left: 20px;
	right: 20px;
	height: 4px;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1) 20%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.1) 80%, transparent);
	border-radius: 2px;
}

.chalkboard-section-title {
	font-family: var(--font-menu);
	font-size: clamp(1.8rem, 4vw, 2.5rem);
	color: #ffd54f;
	text-align: center;
	margin-bottom: var(--space-md);
	text-shadow:
		2px 2px 0 rgba(0, 0, 0, 0.5),
		0 0 20px rgba(255, 213, 79, 0.3);
	letter-spacing: 2px;
	position: relative;
	display: inline-block;
	width: 100%;
}

/* Underline decoration */
.chalkboard-section-title::after {
	content: "";
	display: block;
	width: 60%;
	max-width: 200px;
	height: 2px;
	background: linear-gradient(90deg, transparent, #ffd54f 20%, #ffd54f 80%, transparent);
	margin: var(--space-sm) auto 0;
	opacity: 0.6;
}

.chalkboard-section-desc {
	font-family: var(--font-note);
	color: rgba(255, 255, 255, 0.7);
	text-align: center;
	margin-bottom: var(--space-lg);
	font-style: italic;
}

.chalkboard-items {
	display: flex;
	flex-direction: column;
	gap: var(--space-md);
}

.chalkboard-item {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: var(--space-md);
	padding: var(--space-sm) 0;
	border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
	transition: transform 0.2s ease;
}

.chalkboard-item:last-child {
	border-bottom: none;
}

.chalkboard-item:hover {
	transform: translateX(5px);
}

.chalkboard-item.sold-out {
	opacity: 0.5;
}

.chalkboard-item-info {
	flex: 1;
	padding-right: var(--space-md);
}

.chalkboard-item-name {
	font-family: var(--font-menu);
	font-size: 1.3rem;
	color: #ffffff;
	margin: 0 0 var(--space-xs) 0;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
	letter-spacing: 1px;
}

.chalkboard-item-description {
	font-family: var(--font-note);
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.6);
	margin: 0;
	line-height: 1.4;
}

.chalkboard-item-price {
	font-family: var(--font-menu);
	font-size: 1.4rem;
	color: #81c784;
	white-space: nowrap;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
	flex-shrink: 0;
}

.chalkboard-item .sold-out-badge {
	background: rgba(198, 40, 40, 0.8);
	font-size: 0.7rem;
	padding: 2px 8px;
}

/* Chalkboard with images variant */
.chalkboard-item-with-image {
	display: flex;
	gap: var(--space-md);
	padding: var(--space-md);
	background: rgba(255, 255, 255, 0.03);
	border-radius: var(--radius-md);
	margin-bottom: var(--space-sm);
	border: none;
}

.chalkboard-item-image {
	flex-shrink: 0;
	width: 80px;
	height: 80px;
	border-radius: var(--radius-md);
	overflow: hidden;
	border: 2px solid rgba(255, 255, 255, 0.2);
}

.chalkboard-item-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Two column layout for larger screens */
@media (min-width: 768px) {
	.chalkboard-items-grid {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: var(--space-md) var(--space-xl);
	}
}

/* Menu CTA on chalkboard */
.section-chalkboard .menu-cta {
	text-align: center;
	margin-bottom: var(--space-xl);
}

.section-chalkboard .menu-cta .btn {
	background: linear-gradient(135deg, var(--color-burnt-orange) 0%, var(--color-bbq-red) 100%);
	border: 2px solid var(--color-mustard);
	color: white;
	font-size: 1.1rem;
	padding: var(--space-md) var(--space-xl);
}

.section-chalkboard .menu-cta .btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(204, 85, 0, 0.4);
}

/* Chalkboard decorative elements */
.chalk-divider {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: var(--space-md);
	margin: var(--space-xl) 0;
	color: rgba(255, 255, 255, 0.4);
	font-family: var(--font-menu);
	font-size: 1.5rem;
}

.chalk-divider::before,
.chalk-divider::after {
	content: "";
	flex: 1;
	max-width: 100px;
	height: 2px;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

/* --------------------------------------------------------------------------
   Menu Accordion
   -------------------------------------------------------------------------- */
.menu-accordion {
	display: flex;
	flex-direction: column;
	gap: var(--space-lg);
}

.accordion-section {
	background: rgba(0, 0, 0, 0.4);
	border: 2px solid rgba(255, 255, 255, 0.15);
	border-radius: var(--radius-lg);
	overflow: hidden;
	backdrop-filter: blur(2px);
}

.accordion-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: var(--space-lg) var(--space-xl);
	cursor: pointer;
	transition: background 0.3s ease;
	user-select: none;
}

.accordion-header:hover {
	background: rgba(255, 255, 255, 0.05);
}

.accordion-title {
	font-family: "Fredericka the Great", "Chalkduster", "Comic Sans MS", "Marker Felt", cursive;
	font-size: clamp(1.6rem, 3.5vw, 2.2rem);
	color: #ffd54f;
	text-shadow:
		2px 2px 0 rgba(0, 0, 0, 0.5),
		0 0 20px rgba(255, 213, 79, 0.3);
	letter-spacing: 2px;
	margin: 0;
}

.accordion-icon {
	font-size: 1.5rem;
	color: #ffd54f;
	transition: transform 0.3s ease;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.accordion-section.collapsed .accordion-icon {
	transform: rotate(-90deg);
}

.accordion-content {
	max-height: 5000px;
	overflow: hidden;
	transition:
		max-height 0.4s ease,
		padding 0.3s ease;
	padding: 0 var(--space-xl) var(--space-lg);
}

.accordion-section.collapsed .accordion-content {
	max-height: 0;
	padding-top: 0;
	padding-bottom: 0;
}

.accordion-desc {
	font-family: var(--font-note);
	color: rgba(255, 255, 255, 0.7);
	text-align: center;
	margin-bottom: var(--space-lg);
	font-style: italic;
}

/* --------------------------------------------------------------------------
   Menu Item Lightbox
   -------------------------------------------------------------------------- */
.menu-item-thumb {
	flex-shrink: 0;
	width: 60px;
	height: 60px;
	border-radius: var(--radius-sm);
	overflow: hidden;
	cursor: pointer;
	border: 2px solid rgba(255, 255, 255, 0.2);
	transition:
		transform 0.2s ease,
		border-color 0.2s ease,
		box-shadow 0.2s ease;
}

.menu-item-thumb:hover {
	transform: scale(1.1);
	border-color: #ffd54f;
	box-shadow: 0 4px 15px rgba(255, 213, 79, 0.3);
}

.menu-item-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Lightbox Overlay */
.lightbox-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.95);
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition:
		opacity 0.3s ease,
		visibility 0.3s ease;
	backdrop-filter: blur(10px);
}

.lightbox-overlay.active {
	opacity: 1;
	visibility: visible;
}

.lightbox-content {
	position: relative;
	max-width: 90vw;
	max-height: 90vh;
	animation: lightbox-zoom 0.3s ease;
}

@keyframes lightbox-zoom {
	from {
		transform: scale(0.8);
		opacity: 0;
	}
	to {
		transform: scale(1);
		opacity: 1;
	}
}

.lightbox-image {
	max-width: 100%;
	max-height: 85vh;
	border-radius: var(--radius-lg);
	box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6);
}

.lightbox-caption {
	text-align: center;
	color: white;
	font-family: var(--font-menu);
	font-size: 1.3rem;
	margin-top: var(--space-md);
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.lightbox-caption:empty {
	display: none;
}

.lightbox-close {
	position: absolute;
	top: -50px;
	right: 0;
	background: none;
	border: none;
	color: white;
	font-size: 2.5rem;
	cursor: pointer;
	transition:
		transform 0.2s ease,
		color 0.2s ease;
	line-height: 1;
}

.lightbox-close:hover {
	transform: scale(1.2);
	color: #ffd54f;
}

/* --------------------------------------------------------------------------
   Food Gallery Swiper
   -------------------------------------------------------------------------- */
.food-gallery-wrapper {
	margin-top: var(--space-xxl);
	padding-top: var(--space-xl);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.section-kitchen-gallery .food-gallery-wrapper {
	margin-top: 0;
	padding-top: 0;
	border-top: 0;
}

.food-gallery-header {
	text-align: center;
	margin-bottom: var(--space-xl);
}

.food-gallery-header h2 {
	font-family: var(--font-heading);
	font-size: clamp(2rem, 4vw, 3rem);
	color: #ffd54f;
	text-shadow:
		2px 2px 0 rgba(0, 0, 0, 0.5),
		0 0 30px rgba(255, 213, 79, 0.2);
	margin-bottom: var(--space-sm);
}

.food-gallery-header p {
	font-family: var(--font-note);
	color: rgba(255, 255, 255, 0.85);
	font-size: 1.1rem;
}

.food-swiper {
	padding: var(--space-lg) 0 var(--space-xxl);
	overflow: visible;
}

.food-swiper .swiper-slide {
	height: 350px;
	border-radius: var(--radius-lg);
	overflow: hidden;
	position: relative;
	cursor: pointer;
	transition:
		transform 0.4s ease,
		box-shadow 0.4s ease;
}

.food-swiper .swiper-slide-active {
	transform: scale(1.05);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.food-swiper .swiper-slide:hover {
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.food-swiper .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.food-swiper .swiper-slide:hover img {
	transform: scale(1.1);
}

.food-slide-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 50%);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.food-swiper .swiper-slide:hover .food-slide-overlay {
	opacity: 1;
}

/* Swiper Pagination */
.food-swiper .swiper-pagination {
	bottom: 0;
}

.food-swiper .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background: rgba(255, 255, 255, 0.3);
	opacity: 1;
	transition: all 0.3s ease;
}

.food-swiper .swiper-pagination-bullet-active {
	background: #ffd54f;
	width: 30px;
	border-radius: 6px;
}

/* Swiper Navigation */
.food-swiper .swiper-button-prev,
.food-swiper .swiper-button-next {
	color: #ffd54f;
	background: rgba(0, 0, 0, 0.5);
	width: 50px;
	height: 50px;
	border-radius: 50%;
	transition: all 0.3s ease;
}

.food-swiper .swiper-button-prev::after,
.food-swiper .swiper-button-next::after {
	font-size: 1.2rem;
}

.food-swiper .swiper-button-prev:hover,
.food-swiper .swiper-button-next:hover {
	background: #ffd54f;
	color: #1a1a1a;
	transform: scale(1.1);
}

/* Responsive Swiper */
@media (max-width: 768px) {
	.food-swiper .swiper-slide {
		height: 280px;
	}

	.food-swiper .swiper-button-prev,
	.food-swiper .swiper-button-next {
		display: none;
	}
}

.text-center {
	text-align: center;
}

.cta-buttons {
	display: flex;
	justify-content: center;
	gap: var(--space-md);
	flex-wrap: wrap;
	margin-top: var(--space-lg);
}

/* Food Gallery in Light Sections */
.section-paper .food-gallery-wrapper {
	border-top-color: rgba(0, 0, 0, 0.1);
}

.section-paper .food-gallery-header h2 {
	color: var(--color-bbq);
	text-shadow: none;
}

.section-paper .food-gallery-header p {
	color: rgba(0, 0, 0, 0.6);
}

.section-paper .food-swiper .swiper-pagination-bullet {
	background: rgba(0, 0, 0, 0.2);
}

.section-paper .food-swiper .swiper-pagination-bullet-active {
	background: var(--color-bbq);
}

.section-paper .food-swiper .swiper-button-prev,
.section-paper .food-swiper .swiper-button-next {
	color: #fff;
	background: var(--color-bbq);
}

.section-paper .food-swiper .swiper-button-prev:hover,
.section-paper .food-swiper .swiper-button-next:hover {
	background: var(--color-ember);
	color: #fff;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
	background-color: var(--color-charcoal);
	background-image: var(--bg-dark-texture);
	background-size: cover;
	background-position: center;
	color: var(--color-cream);
	padding: var(--space-xxl) 0 var(--space-lg);
	position: relative;
	align-items: center !important;
}

.site-footer::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%);
	pointer-events: none;
}

.site-footer .container {
	position: relative;
	z-index: 1;
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(185px, 1fr));
	gap: 10px;
	margin-bottom: var(--space-xl);
}

.footer-brand-row {
	display: flex;
	justify-content: center;
	margin-bottom: var(--space-lg);
}

.footer-logo-section {
	text-align: center;
}

.footer-logo {
	max-width: 180px;
	height: auto;
	margin-bottom: var(--space-md);
}

.footer-tagline {
	font-family: var(--font-note);
	font-size: 0.95rem;
	color: var(--color-cream-dark);
}

.footer-section h3 {
	font-family: var(--font-heading);
	font-size: 1.2rem;
	color: var(--color-mustard);
	margin-bottom: var(--space-md);
	text-align: center;
}

.footer-section p {
	margin-bottom: var(--space-sm);
	font-size: 0.95rem;
}

.footer-section-contact-location {
	display: flex;
	flex-direction: column;
	gap: var(--space-lg);
}

.footer-stack-block {
	text-align: center;
}

.footer-section a {
	color: var(--color-cream);
	transition: color var(--transition);
}

.footer-section a:hover {
	color: var(--color-mustard);
}

.hours-line {
	display: flex;
	justify-content: space-between;
	font-size: 0.9rem;
	padding: 0.25rem 0;
}

.hours-line .day {
	font-family: var(--font-accent);
	letter-spacing: 1px;
}

/* Social Links */
.social-links {
	display: flex;
	flex-direction: column;
	gap: var(--space-sm);
	margin-bottom: var(--space-md);
}

.social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--space-sm);
	padding: 0.75rem 1.5rem;
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
	border-radius: var(--radius-sm);
	color: var(--color-cream);
	font-family: var(--font-accent);
	font-size: 0.9rem;
	letter-spacing: 1px;
	max-width: 220px;
	box-shadow:
		0 4px 12px rgba(0, 0, 0, 0.2),
		inset 0 1px 0 rgba(255, 255, 255, 0.1),
		inset 0 -1px 0 rgba(0, 0, 0, 0.1);
	transition:
		background var(--transition),
		transform var(--transition),
		box-shadow var(--transition);
}

.social-link:hover {
	background: linear-gradient(145deg, var(--color-burnt-orange) 0%, #a34700 100%);
	color: var(--color-white);
	transform: translateY(-3px) scale(1.02);
	box-shadow:
		0 10px 25px rgba(204, 85, 0, 0.4),
		inset 0 1px 0 rgba(255, 255, 255, 0.15),
		inset 0 -2px 0 rgba(0, 0, 0, 0.12);
}

/* Facebook brand styling - base state */
.social-link-facebook {
	background: linear-gradient(145deg, #4a6cb3 0%, #3b5998 50%, #2d4373 100%);
	color: #ffffff;
	border: 2px solid #3b5998;
	box-shadow:
		0 6px 18px rgba(59, 89, 152, 0.4),
		0 3px 8px rgba(0, 0, 0, 0.15),
		inset 0 1px 0 rgba(255, 255, 255, 0.2),
		inset 0 -2px 0 rgba(0, 0, 0, 0.15);
	font-weight: 600;
}

.social-link-facebook svg {
	color: #ffffff;
	width: 18px;
	height: 18px;
}

.social-link-facebook:hover {
	background: linear-gradient(145deg, #5b7ec4 0%, #4a6cb3 50%, #3b5998 100%);
	color: #ffffff;
	border: 2px solid #8b9dc3;
	box-shadow:
		0 12px 30px rgba(59, 89, 152, 0.55),
		0 6px 15px rgba(0, 0, 0, 0.2),
		inset 0 2px 0 rgba(255, 255, 255, 0.25),
		inset 0 -2px 0 rgba(0, 0, 0, 0.1);
	transform: translateY(-3px) scale(1.02);
}

/* Footer-specific button styling */
.footer-section .social-links {
	align-items: center;
}

.footer-section .btn.btn-primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	max-width: 220px;
	padding: 0.75rem 1.5rem;
	font-size: 0.9rem;
}

/* Facebook button style for standalone buttons */
.btn.social-link-facebook {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1.5rem;
	background: linear-gradient(145deg, #4a6cb3 0%, #3b5998 50%, #2d4373 100%);
	color: #ffffff;
	border: 2px solid #3b5998;
	border-radius: var(--radius-sm);
	font-weight: 600;
	font-size: 1rem;
	box-shadow:
		0 6px 20px rgba(59, 89, 152, 0.4),
		0 3px 8px rgba(0, 0, 0, 0.2),
		inset 0 1px 0 rgba(255, 255, 255, 0.2),
		inset 0 -2px 0 rgba(0, 0, 0, 0.15);
	transition: all 0.3s ease;
}

.btn.social-link-facebook:hover {
	background: linear-gradient(145deg, #5b7ec4 0%, #4a6cb3 50%, #3b5998 100%);
	border-color: #8b9dc3;
	box-shadow:
		0 12px 32px rgba(59, 89, 152, 0.55),
		0 6px 15px rgba(0, 0, 0, 0.25),
		inset 0 2px 0 rgba(255, 255, 255, 0.25),
		inset 0 -2px 0 rgba(0, 0, 0, 0.1);
	transform: translateY(-3px) scale(1.02);
	color: #ffffff;
}

.social-link svg {
	width: 18px;
	height: 18px;
}

.mt-lg {
	margin-top: var(--space-lg);
}

/* Footer Buttons Container */
.footer-buttons {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	align-items: center;
}

.footer-buttons .btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	width: 180px;
	padding: 0.75rem 1.25rem;
	font-size: 0.9rem;
	font-weight: 600;
	border-radius: var(--radius-sm);
}

/* Facebook button */
.btn-facebook {
	background: linear-gradient(145deg, #4a6cb3 0%, #3b5998 50%, #2d4373 100%);
	color: #ffffff !important;
	border: 2px solid #3b5998;
	box-shadow:
		0 6px 20px rgba(59, 89, 152, 0.4),
		0 3px 8px rgba(0, 0, 0, 0.2),
		inset 0 1px 0 rgba(255, 255, 255, 0.2),
		inset 0 -2px 0 rgba(0, 0, 0, 0.15);
}

.btn-facebook:hover {
	background: linear-gradient(145deg, #5b7ec4 0%, #4a6cb3 50%, #3b5998 100%);
	border-color: #8b9dc3;
	box-shadow:
		0 12px 32px rgba(59, 89, 152, 0.55),
		0 6px 15px rgba(0, 0, 0, 0.25),
		inset 0 2px 0 rgba(255, 255, 255, 0.25),
		inset 0 -2px 0 rgba(0, 0, 0, 0.1);
	transform: translateY(-3px) scale(1.02);
	color: #ffffff !important;
}

.btn-facebook svg {
	width: 18px;
	height: 18px;
}

.footer-bottom {
	text-align: center;
	font-family: "Fredericka the Great", "Chalkduster", "Comic Sans MS", "Marker Felt", cursive;
	padding-top: var(--space-lg);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 1.3rem;
	color: #c9c9c9;
}

/* --------------------------------------------------------------------------
   Error Pages
   -------------------------------------------------------------------------- */
.error-page {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: var(--space-xl);
}

.error-page h1 {
	font-size: 8rem;
	color: var(--color-burnt-orange);
	margin-bottom: var(--space-sm);
}

.error-page p {
	font-size: 1.5rem;
	margin-bottom: var(--space-xl);
}

/* --------------------------------------------------------------------------
   About Page
   -------------------------------------------------------------------------- */
.page-hero-about {
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)), url("/assets/images/backgrounds/wood-bg.webp");
	background-size: cover;
	background-position: center;
	color: var(--color-cream);
	min-height: 40vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

.page-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
	pointer-events: none;
}

/* About Story Section */
.about-story-wrapper {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: var(--space-xxl);
	align-items: center;
}

.about-story-image img {
	width: 100%;
	max-width: 300px;
	border-radius: var(--radius-lg);
}

.about-story-content p {
	font-size: 1.1rem;
	line-height: 1.8;
	margin-bottom: var(--space-md);
	color: var(--color-charcoal);
}

/* Award Section */
.award-showcase {
	display: flex;
	flex-direction: column;
	gap: var(--space-md);
	align-items: center;
	justify-content: center;
	max-width: 900px;
	margin: 0 auto var(--space-xl);
}

.award-badge {
	display: none; /* Using trophy instead */
}

@keyframes goldShine {
	0%,
	100% {
		box-shadow:
			0 10px 40px rgba(255, 193, 7, 0.4),
			inset 0 2px 5px rgba(255, 255, 255, 0.5);
	}
	50% {
		box-shadow:
			0 15px 50px rgba(255, 193, 7, 0.6),
			inset 0 2px 5px rgba(255, 255, 255, 0.7);
	}
}

.award-year {
	font-family: var(--font-heading);
	font-size: 1.8rem;
	color: var(--color-mustard);
}

.award-icon {
	font-size: 2.5rem;
	line-height: 1;
}

.award-text {
	font-family: var(--font-heading);
	font-size: 1.4rem;
	color: var(--color-cream);
	text-transform: uppercase;
	letter-spacing: 2px;
}

.award-details {
	text-align: center;
	color: var(--color-cream);
	max-width: 600px;
}

.award-details h3 {
	font-family: var(--font-heading);
	font-size: 1.5rem;
	color: var(--color-mustard);
	margin-bottom: var(--space-xs);
}

.award-title {
	font-family: var(--font-hero);
	font-size: 1.8rem;
	margin-bottom: var(--space-md);
	color: var(--color-cream);
}

.award-description {
	font-size: 1.1rem;
	line-height: 1.7;
	margin-bottom: var(--space-lg);
	opacity: 0.95;
}

/* Community Section */
.community-intro {
	text-align: center;
	max-width: 800px;
	margin: 0 auto var(--space-xxl);
}

.donation-amount {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: var(--space-lg);
}

.amount-prefix {
	font-family: var(--font-note);
	font-size: 1.2rem;
	color: var(--color-smoke);
}

.amount-number {
	font-family: var(--font-hero);
	font-size: clamp(3rem, 8vw, 5rem);
	color: var(--color-burnt-orange);
	line-height: 1.1;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.amount-suffix {
	font-family: var(--font-heading);
	font-size: 1.3rem;
	color: var(--color-charcoal);
	letter-spacing: 2px;
	text-transform: uppercase;
}

.community-text {
	font-size: 1.15rem;
	line-height: 1.8;
	color: var(--color-charcoal);
}

.community-causes h3 {
	text-align: center;
	font-family: var(--font-heading);
	font-size: 1.6rem;
	margin-bottom: var(--space-xl);
	color: var(--color-charcoal);
}

.causes-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: var(--space-lg);
}

.cause-card {
	background: #ffffff;
	background: linear-gradient(177deg, rgb(255 255 255) 53%, rgb(227 215 190) 100%);
	border-radius: var(--radius-lg);
	padding: var(--space-xl);
	text-align: center;
	box-shadow: var(--shadow-md);
	transition:
		transform var(--transition),
		box-shadow var(--transition);
}

.cause-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-lg);
}

.cause-icon {
	font-size: 3rem;
	display: block;
	margin-bottom: var(--space-md);
}

.cause-icon img {
	width: 130px;
	height: 130px;
	object-fit: contain;
}

.cause-card h4 {
	font-family: var(--font-heading);
	font-size: 1.3rem;
	color: var(--color-burnt-orange);
	margin-bottom: var(--space-sm);
}

.cause-card p {
	color: var(--color-smoke);
	line-height: 1.6;
}

/* Donation Gallery Section */
.donation-gallery-wrapper {
	max-width: 1320px;
	margin: 0 auto;
}

.donation-gallery-header {
	text-align: center;
	margin-bottom: var(--space-xl);
	color: var(--color-cream);
}

.donation-gallery-header h2 {
	font-family: var(--font-hero);
	font-size: 2rem;
	margin-bottom: var(--space-xs);
}

.donation-gallery-header p {
	font-family: var(--font-note);
	font-size: 1.1rem;
	opacity: 0.9;
}

.donation-swiper {
	width: 100%;
	padding-bottom: var(--space-xl);
}

.donation-swiper .swiper-slide {
	aspect-ratio: 14 / 10;
	height: auto;
	min-height: 340px;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-lg);
	position: relative;
	cursor: pointer;
	transition:
		transform 0.4s ease,
		box-shadow 0.4s ease;
}

.donation-swiper .swiper-slide-active {
	transform: scale(1.05);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.donation-swiper .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	background: rgba(0, 0, 0, 0.1);
}

.lightbox-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 46px;
	height: 46px;
	border: none;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.55);
	color: #fff;
	font-size: 2rem;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s ease;
	z-index: 2;
}

.lightbox-nav:hover {
	background: rgba(0, 0, 0, 0.8);
}

.lightbox-nav-prev {
	left: 10px;
}

.lightbox-nav-next {
	right: 10px;
}

.lightbox-nav.hidden {
	display: none;
}

.donation-slide-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
	pointer-events: none;
}

.donation-placeholder {
	width: 100%;
	height: 300px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.1);
	color: var(--color-cream);
}

.donation-placeholder span {
	font-size: 4rem;
	margin-bottom: var(--space-md);
}

.donation-swiper .swiper-pagination-bullet {
	background: var(--color-cream);
	opacity: 0.5;
}

.donation-swiper .swiper-pagination-bullet-active {
	background: var(--color-mustard);
	opacity: 1;
}

.donation-swiper .swiper-button-prev,
.donation-swiper .swiper-button-next {
	color: var(--color-cream);
	opacity: 0.8;
}

.donation-swiper .swiper-button-prev:hover,
.donation-swiper .swiper-button-next:hover {
	opacity: 1;
}

/* About CTA Section */
.about-cta-wrapper {
	text-align: center;
	max-width: 600px;
	margin: 0 auto;
}

/* Wider wrapper when containing catering menu */
.about-cta-wrapper:has(.catering-menu-sheet) {
	max-width: 1000px;
}

.cta-sauces-img {
	max-width: 350px;
	height: auto;
	margin-bottom: var(--space-lg);
	border-radius: var(--radius-lg);
}

.about-cta-wrapper h2 {
	font-family: var(--font-heading);
	font-size: 2rem;
	color: var(--color-charcoal);
	margin-bottom: var(--space-md);
}

.about-cta-wrapper p {
	font-size: 1.1rem;
	color: var(--color-smoke);
	margin-bottom: var(--space-xl);
	line-height: 1.7;
}

.about-cta-wrapper .cta-buttons {
	display: flex;
	gap: var(--space-md);
	justify-content: center;
	flex-wrap: wrap;
}

/* Catering Page */
.catering-menu-actions {
	display: flex;
	justify-content: center;
	gap: var(--space-md);
	margin-bottom: var(--space-lg);
	flex-wrap: wrap;
}

.catering-menu-actions .btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.catering-menu-sheet {
	position: relative;
	background: linear-gradient(180deg, #f5efe6 0%, #efe8dc 100%);
	border: none;
	border-radius: 0;
	padding: 4rem 5rem;
	box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
	text-align: left;
	margin: var(--space-lg) auto;
	max-width: 950px;
	width: 100%;
	overflow: hidden;
}

/* Fancy decorative corner flourishes */
.corner-flourish {
	position: absolute;
	width: 60px;
	height: 60px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 60'%3E%3Cpath fill='none' stroke='%238b6914' stroke-width='1.5' d='M5,5 Q5,30 30,30 Q5,30 5,55' /%3E%3Cpath fill='none' stroke='%238b6914' stroke-width='1.5' d='M10,5 Q10,25 30,25 Q10,25 10,45' /%3E%3Ccircle cx='8' cy='8' r='3' fill='%238b6914' /%3E%3Cpath fill='none' stroke='%238b6914' stroke-width='1' d='M15,15 C20,12 22,18 18,22 C14,26 20,28 25,25' /%3E%3C/svg%3E");
	background-size: contain;
	background-repeat: no-repeat;
	z-index: 2;
}

.corner-tl {
	top: 8px;
	left: 8px;
}

.corner-tr {
	top: 8px;
	right: 8px;
	transform: scaleX(-1);
}

.corner-bl {
	bottom: 8px;
	left: 8px;
	transform: scaleY(-1);
}

.corner-br {
	bottom: 8px;
	right: 8px;
	transform: scale(-1, -1);
}

/* Decorative border lines */
.border-line {
	position: absolute;
	background: linear-gradient(90deg, transparent 0%, #8b6914 10%, #b5823e 50%, #8b6914 90%, transparent 100%);
	z-index: 1;
}

.border-top,
.border-bottom {
	height: 2px;
	left: 50px;
	right: 50px;
}

.border-top {
	top: 18px;
}

.border-bottom {
	bottom: 18px;
}

.border-left,
.border-right {
	width: 2px;
	top: 50px;
	bottom: 50px;
	background: linear-gradient(180deg, transparent 0%, #8b6914 10%, #b5823e 50%, #8b6914 90%, transparent 100%);
}

.border-left {
	left: 18px;
}

.border-right {
	right: 18px;
}

/* Inner double border */
.catering-menu-sheet::before {
	content: "";
	position: absolute;
	top: 25px;
	left: 25px;
	right: 25px;
	bottom: 25px;
	border: 1px solid rgba(139, 105, 20, 0.3);
	pointer-events: none;
	z-index: 1;
}

.catering-menu-sheet::after {
	content: "";
	position: absolute;
	top: 30px;
	left: 30px;
	right: 30px;
	bottom: 30px;
	border: 1px solid rgba(139, 105, 20, 0.2);
	pointer-events: none;
	z-index: 1;
}

/* Title ornament divider */
.title-ornament {
	width: 80px;
	height: 20px;
	margin: 0 auto var(--space-lg);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 20'%3E%3Cpath fill='none' stroke='%238b6914' stroke-width='1.2' d='M0,10 C10,10 15,5 25,5 C30,5 32,10 40,10 C48,10 50,5 55,5 C65,5 70,10 80,10' /%3E%3Ccircle cx='40' cy='10' r='2.5' fill='%238b6914' /%3E%3Ccircle cx='25' cy='5' r='1.5' fill='%238b6914' /%3E%3Ccircle cx='55' cy='5' r='1.5' fill='%238b6914' /%3E%3C/svg%3E");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

/* Logo at bottom */
.catering-logo {
	text-align: center;
	margin-top: var(--space-xl);
	padding-top: var(--space-md);
}

.catering-logo img {
	max-width: 140px;
	height: auto;
	opacity: 0.85;
}

.catering-menu-sheet h3 {
	text-align: center;
	margin-bottom: var(--space-xl);
	font-family: var(--font-heading);
	letter-spacing: 2px;
	font-size: 2.5rem;
}

.catering-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: calc(var(--space-xl) * 2);
	padding: 0 var(--space-xl);
}

.catering-grid h4 {
	margin: var(--space-md) 0 var(--space-xs);
	font-family: var(--font-heading);
	font-size: 1.5rem;
}

.catering-grid ul {
	margin: 0 0 var(--space-sm) 1.1rem;
	padding: 0;
	line-height: 1.6;
}

.catering-contact-card {
	background: radial-gradient(ellipse at center, #f5f0e8 0%, #e2dcd1 70%, #d9d3c7 100%);
	border: 1px solid rgba(139, 105, 20, 0.2);
	border-radius: var(--radius-lg);
	padding: var(--space-xl);
	box-shadow: var(--shadow-md);
	text-align: left;
}

.catering-form {
	display: flex;
	flex-direction: column;
	gap: var(--space-sm);
	margin-top: var(--space-md);
}

.catering-form input,
.catering-form textarea,
.catering-form select {
	width: 100%;
	padding: 1rem 1.1rem;
	border: 2px solid rgba(139, 105, 20, 0.3);
	border-radius: var(--radius-sm);
	font-family: var(--font-body);
	font-size: 1rem;
	background: #fff;
	color: #333;
	-webkit-appearance: none;
	appearance: none;
}

.catering-form input:focus,
.catering-form textarea:focus,
.catering-form select:focus {
	outline: none;
	border-color: #8b6914;
	box-shadow: 0 0 0 3px rgba(139, 105, 20, 0.15);
}

.catering-form input[type="date"] {
	min-height: 52px;
	line-height: 1.4;
	color: #333;
}

/* iOS date picker fix */
.catering-form input[type="date"]::-webkit-date-and-time-value {
	text-align: left;
}

.catering-form label {
	display: block;
	font-weight: 600;
	margin-bottom: 0.3rem;
	color: #5a4a3a;
	font-size: 0.9rem;
}

.form-group {
	margin-bottom: var(--space-sm);
}

.form-group-inline {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-md);
}

@media (max-width: 500px) {
	.form-group-inline {
		grid-template-columns: 1fr;
	}
}

.catering-form textarea {
	resize: vertical;
}

/* Catering menu text formatting */
.catering-subtitle {
	display: block;
	font-size: 0.65em;
	letter-spacing: 3px;
	margin-top: 0.3em;
	font-weight: 500;
}

.catering-choose {
	margin: -0.3rem 0 0.5rem 0;
	font-size: 0.95rem;
	color: #5a4a3a;
}

.catering-note {
	font-size: 0.9rem;
	color: #6b5b4a;
	margin-top: 0.5rem;
}

.pricing-list {
	list-style: none !important;
	margin-left: 0 !important;
	padding-left: 0 !important;
}

.pricing-list li {
	margin-bottom: 0.4rem;
}

.pricing-sub {
	font-size: 0.88em;
	color: #6b5b4a;
}

/* Honeypot fields - hidden from humans, visible to bots */
.hp-field {
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	height: 0;
	width: 0;
	z-index: -1;
	overflow: hidden;
	pointer-events: none;
}

/* Captcha styling */
.captcha-row {
	display: flex;
	align-items: center;
	gap: var(--space-sm);
	flex-wrap: wrap;
}

.captcha-row label {
	font-weight: 500;
	white-space: nowrap;
}

.captcha-input {
	width: 80px !important;
	text-align: center;
	font-size: 1.1rem !important;
	font-weight: 600;
}

@media (max-width: 768px) {
	.menu-cta {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: var(--space-sm);
	}

	.menu-cta .btn + .btn {
		margin-left: 0;
	}

	.catering-grid {
		grid-template-columns: 1fr;
		gap: var(--space-lg);
	}

	.catering-menu-sheet,
	.catering-contact-card {
		padding: var(--space-lg);
	}

	.catering-menu-sheet {
		padding: 2.5rem 1.5rem;
		max-width: 100%;
	}

	.corner-flourish {
		width: 40px;
		height: 40px;
	}

	.border-top,
	.border-bottom {
		left: 35px;
		right: 35px;
	}

	.border-left,
	.border-right {
		top: 35px;
		bottom: 35px;
	}

	.catering-menu-sheet::before {
		top: 18px;
		left: 18px;
		right: 18px;
		bottom: 18px;
	}

	.catering-menu-sheet::after {
		top: 22px;
		left: 22px;
		right: 22px;
		bottom: 22px;
	}

	.catering-menu-actions {
		flex-direction: column;
		align-items: center;
	}

	.catering-logo img {
		max-width: 100px;
	}

	/* Center all catering menu text on mobile */
	.catering-menu-sheet {
		text-align: center;
	}

	.catering-menu-sheet h3,
	.catering-menu-sheet h4,
	.catering-menu-sheet p,
	.catering-menu-sheet ul {
		text-align: center;
	}

	.catering-grid ul {
		list-style: none;
		margin-left: 0;
		padding-left: 0;
	}

	.catering-grid ul li::before {
		content: "• ";
	}

	.pricing-list li::before {
		content: none;
	}
}

/* --------------------------------------------------------------------------
   Responsive Adjustments
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
	:root {
		--header-height: 60px;
	}

	/* Fix hero viewport height for mobile browsers with address bar */
	.hero {
		min-height: 100svh; /* Safe viewport height - accounts for browser chrome */
		min-height: -webkit-fill-available; /* iOS Safari fallback */
		overflow-y: visible; /* Allow content to extend if needed */
		padding-bottom: var(--space-xl); /* Extra padding for button visibility */
	}

	.hero-content {
		padding-bottom: calc(var(--space-xl) + env(safe-area-inset-bottom, 20px));
	}

	.section {
		padding: var(--space-xl) 0;
	}

	.section-title {
		font-size: 2rem;
	}

	.hero-actions {
		flex-direction: column;
		align-items: center;
	}

	.hero-actions .btn {
		width: 100%;
		max-width: 300px;
	}

	.status-banners {
		flex-direction: column;
		align-items: center;
	}

	.status-banner {
		width: 100%;
		max-width: 400px;
	}

	.menu-grid {
		grid-template-columns: 1fr;
	}

	.restaurant-info {
		grid-template-columns: 1fr;
	}

	.footer-grid {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.footer-section-contact-location {
		gap: var(--space-md);
	}

	.hours-line {
		justify-content: center;
		gap: var(--space-md);
	}

	/* Accordion mobile improvements */
	.accordion-header {
		padding: var(--space-md) var(--space-lg);
	}

	.accordion-title {
		font-size: 2.2rem;
	}

	.accordion-content {
		padding: 0 var(--space-md) var(--space-md);
	}

	.chalkboard-item {
		flex-wrap: wrap;
		gap: var(--space-sm);
	}

	.chalkboard-item-name {
		font-size: 1.1rem;
	}

	.chalkboard-item-price {
		font-size: 1.2rem;
	}

	.menu-item-thumb {
		width: 50px;
		height: 50px;
	}

	/* Hero mobile improvements */
	.hero-logo {
		max-width: 280px;
	}

	/* Favorite cards mobile */
	.favorite-image {
		height: 180px;
	}

	.favorite-content {
		padding: var(--space-md);
	}

	.favorite-name {
		font-size: 1.2rem;
	}

	/* Page hero mobile */
	.page-hero {
		padding: calc(var(--header-height) + var(--space-xl)) var(--space-md) var(--space-xl);
	}

	.page-hero-logo {
		max-width: 100px;
	}

	.page-title {
		font-size: 2rem;
	}

	.page-subtitle {
		font-size: 1.1rem;
	}

	/* About page mobile */
	.about-story-wrapper {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.about-story-image {
		order: -1;
	}

	.about-story-image img {
		max-width: 200px;
		margin: 0 auto;
	}

	.award-showcase {
		flex-direction: column;
		text-align: center;
	}

	.award-badge {
		width: 140px;
		height: 140px;
	}

	.award-details {
		text-align: center;
	}

	.award-title {
		font-size: 1.4rem;
	}

	.donation-swiper .swiper-slide {
		aspect-ratio: 14 / 10;
		min-height: 260px;
	}

	.donation-swiper .swiper-slide img {
		height: 100%;
	}

	.lightbox-nav {
		width: 40px;
		height: 40px;
		font-size: 1.8rem;
	}

	/* Buttons mobile */
	.btn-lg {
		padding: var(--space-sm) var(--space-lg);
		font-size: 0.95rem;
	}

	.cta-buttons {
		flex-direction: column;
		align-items: center;
	}

	.cta-buttons .btn {
		width: 100%;
		max-width: 300px;
	}
}

/* Extra small screens */
@media (max-width: 480px) {
	:root {
		--space-lg: 1.5rem;
		--space-xl: 2rem;
		--space-xxl: 3rem;
	}

	.container {
		padding: 0 var(--space-md);
	}

	.section-title {
		font-size: 1.6rem;
	}

	.accordion-title {
		font-size: 2.1rem;
	}

	.chalkboard-item-info {
		padding-right: 0;
	}

	.chalkboard-item-price {
		width: 100%;
		text-align: right;
	}

	.food-gallery-header h2 {
		font-size: 1.6rem;
	}

	.lightbox-caption {
		font-size: 1rem;
	}
}

.shiny {
	color: #f5c21b;
	background: -webkit-gradient(linear, left top, left bottom, from(#f5c21b), to(#d17000));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	display: inline-block;
	font-family: "Source Sans Pro", sans-serif;
	font-size: clamp(2.5rem, 10vw, 6rem);
	font-weight: 900;
	position: relative;
	text-transform: uppercase;
}

@media (max-width: 768px) {
	.shiny {
		display: block;
		width: 80vw;
		max-width: 80vw;
		margin-left: auto;
		margin-right: auto;
		text-align: center;
	}

	/* Hide pseudo-element text on mobile - the actual text handles display */
	.shiny::before,
	.shiny::after {
		content: none;
	}
}

.shiny::before {
	background-position: -180px;
	-webkit-animation: flare 5s infinite;
	-webkit-animation-timing-function: linear;
	background-image: linear-gradient(65deg, transparent 20%, rgba(255, 255, 255, 0.2) 20%, rgba(255, 255, 255, 0.3) 27%, transparent 27%, transparent 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	content: "$150,000";
	color: #fff;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
}

.shiny::after {
	content: "$150,000";
	color: #fff;
	display: block;
	position: absolute;
	text-shadow:
		0 1px #6e4414,
		0 2px #6e4414,
		0 3px #6e4414,
		0 4px #6e4414,
		0 5px #6e4414,
		0 6px #6e4414,
		0 7px #6e4414,
		0 8px #6e4414,
		0 9px #6e4414,
		0 10px #6e4414;
	top: 0;
	left: 0;
	right: 0;
	z-index: -1;
}

.inner-shiny::after,
.inner-shiny::before {
	-webkit-animation: sparkle 5s infinite;
	-webkit-animation-timing-function: linear;
	background: #fff;
	border-radius: 100%;
	box-shadow:
		0 0 5px #fff,
		0 0 10px #fff,
		0 0 15px #fff,
		0 0 20px #fff,
		0 0 25px #fff,
		0 0 30px #fff,
		0 0 35px #fff;
	content: "";
	display: block;
	height: 0.15em;
	opacity: 0.7;
	position: absolute;
	width: 0.15em;
}

.inner-shiny::before {
	-webkit-animation-delay: 0.2s;
	height: 0.12em;
	left: 0.12em;
	top: 0.2em;
	width: 0.12em;
}

.inner-shiny::after {
	top: 0.08em;
	right: -0.05em;
}

@-webkit-keyframes flare {
	0% {
		background-position: -180px;
	}
	30% {
		background-position: 400px;
	}
	100% {
		background-position: 400px;
	}
}

@-webkit-keyframes sparkle {
	0% {
		opacity: 0;
	}
	30% {
		opacity: 0;
	}
	40% {
		opacity: 0.8;
	}
	60% {
		opacity: 0;
	}
	100% {
		opacity: 0;
	}
}

/* ==========================================================================
   Trophy - 3D Animated
   ========================================================================== */
.trophy {
	width: 200px;
	height: 260px;
	transform-style: preserve-3d;
	transform-origin: center;
	animation: 3s ease-in-out infinite alternate both floating;
	margin-bottom: -5%;
}

@keyframes floating {
	from {
		transform: rotate3d(-2, 1, 0.5, 15deg) translateY(10px);
	}
	to {
		transform: rotate3d(-1, -0.5, 0.2, 10deg) translateY(0px);
	}
}

.trophy .first,
.trophy .second {
	width: 100%;
	height: 100%;
}

.trophy .second {
	position: absolute;
	top: 0;
	left: 10;
	transform: rotateY(20deg);
}

.trophy .top {
	height: 60%;
	width: 50%;
	margin: auto;
	margin-bottom: -12%;
	position: relative;
	z-index: -1;
}

.trophy .top:after {
	content: "";
	position: absolute;
	width: 100%;
	height: 50%;
	background: linear-gradient(180deg, rgba(255, 213, 79, 1) 20%, rgba(255, 179, 0, 1) 100%);
	border-radius: 100%;
	top: -1px;
	transform: rotateX(90deg) translateY(-50%);
	transform-origin: top center;
	border: solid 5px rgba(255, 240, 201, 0.7);
	box-sizing: border-box;
}

.trophy .cup {
	height: 65%;
	width: 100%;
	margin: auto;
	border-radius: 10% 10% 50% 50%;
	transform: rotate3D(1, 0, 0, -30deg) translateZ(50%);
	z-index: 2;
}

.trophy .cup-base {
	width: 50%;
	height: 30%;
	border-radius: 50%;
	z-index: 0;
	margin: auto;
	margin-top: -5%;
	margin-bottom: -50%;
}

.trophy .circle {
	z-index: 1;
	width: 20%;
	height: 12%;
	border-radius: 50%;
	margin: auto;
	margin-top: -10%;
}

.trophy .circle,
.trophy .cup-base,
.trophy .cup {
	background-color: #ffb300;
	overflow: hidden;
	position: relative;
}

.trophy .cup-base:after,
.trophy .cup:after,
.trophy .circle:after,
.trophy .cup:before,
.trophy .top:after,
.trophy .base-top:after {
	position: absolute;
	content: "";
}

.trophy .cup-base:after {
	height: 100%;
	width: 100%;
	left: -10%;
	top: -1%;
	background-color: #ffd54f;
	border-radius: 50%;
}

.trophy .cup:after {
	height: 112%;
	width: 100%;
	top: -10%;
	left: -10%;
	background-color: #ffd54f;
	border-radius: 10% 10% 50% 50%;
}

.trophy .cup:before {
	background-color: transparent;
	border-left: 8px solid rgba(255, 240, 201, 0.6);
	height: 70%;
	width: 40%;
	top: 18%;
	left: 12%;
	border-radius: 10% 10% 50% 50%;
	z-index: 15;
	filter: blur(2px);
	transform: translateZ(50px) rotateY(0deg);
	animation: 3s ease-in-out infinite alternate both shine-rotate;
}

@keyframes shine-rotate {
	from {
		transform: translateZ(50px) rotateY(0deg) translateX(15px);
		width: 25%;
	}
	to {
		transform: translateZ(50px) rotateY(0deg);
	}
}

.trophy .arm {
	transform-style: preserve-3d;
	position: absolute;
	height: 22%;
	width: 28%;
	border: 10px solid #ffd54f;
	border-right: none;
	border-radius: 50% 0 0 50%;
	top: 18%;
	right: 95%;
	animation: 3s ease-in-out infinite alternate both arm-sway-left;
}

@keyframes arm-sway-left {
	from {
		transform: translateX(-5px);
	}
	to {
		transform: translateX(0);
	}
}

.trophy .arm.right {
	border: 10px solid #ffb300;
	border-left: none;
	border-radius: 0 50% 50% 0;
	top: 18%;
	right: 0;
	left: 95%;
	animation-name: arm-sway-right;
}

@keyframes arm-sway-right {
	from {
		transform: translateX(5px);
	}
	to {
		transform: translateX(0);
	}
}

.trophy .circle:after {
	position: absolute;
	content: "";
	height: 100%;
	width: 80%;
	background-color: #ffd54f;
}

.move {
	transform-style: preserve-3d;
	transform: translateZ(40px);
	width: 100%;
	height: 100%;
}

.trophy .base {
	background-color: #6d4c41;
	width: 55%;
	height: 20%;
	margin: auto;
	position: relative;
	perspective: 800px;
	transform-style: preserve-3D;
	border-radius: 3px;
}

.trophy .base-top {
	width: 100%;
	height: 150%;
	background-color: #8d6e63;
	position: absolute;
	bottom: 100%;
	transform: rotateX(90deg);
	transform-origin: bottom center;
	border-radius: 3px;
}

.trophy .base-top:after {
	content: "";
	transform-style: preserve-3D;
	background-color: #5d4037;
	width: 30%;
	height: 50%;
	position: absolute;
	top: 0;
	left: 40%;
	transform: skew(-40deg);
	transform-origin: bottom center;
}

.trophy .base-side {
	width: 68%;
	height: 99.8%;
	background-color: #8d6e63;
	position: absolute;
	top: 0;
	right: 99.8%;
	transform: rotateY(-90deg);
	transform-origin: top right;
	border-radius: 3px 0 0 3px;
}

.trophy .base-side.right {
	left: 99.8%;
	transform: rotateY(90deg);
	transform-origin: top left;
	border-radius: 0 3px 3px 0;
}

.trophy .plate {
	background: linear-gradient(135deg, #ffe082 0%, #ffb300 50%, #ff8f00 100%);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) translateY(5px);
	height: 45%;
	width: 75%;
	overflow: hidden;
	border-radius: 2px;
}

.trophy .plate:after {
	content: "";
	background-color: rgba(255, 240, 201, 0.5);
	width: 25%;
	height: 100%;
	position: absolute;
	left: 15%;
	top: 0;
	transform: skew(30deg);
	animation: 3s ease-in-out infinite alternate both plate-shine;
}

@keyframes plate-shine {
	from {
		transform: translateX(60px) skew(30deg);
	}
	to {
		transform: translateX(0px) skew(30deg);
	}
}

.crop-base {
	position: absolute;
	bottom: 100%;
	width: 50%;
	height: 30%;
	border: 12px solid transparent;
	border-bottom: 12px solid #8d6e63;
	bottom: 90%;
	left: 50%;
	transform: translate(-50%) rotateX(60deg) translateY(-39%);
	transform-origin: bottom center;
	border-radius: 50%;
}

/* Video Section with Plyr */
.award-video-wrapper {
	max-width: 700px;
	margin: 0 auto;
}

.video-container {
	position: relative;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.video-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
	z-index: 10;
	cursor: pointer;
	transition: opacity 0.3s ease;
}

.video-overlay.hidden {
	opacity: 0;
	pointer-events: none;
}

.watch-video-btn {
	display: flex;
	align-items: center;
	gap: var(--space-sm);
	padding: var(--space-md) var(--space-xl);
	background: var(--color-burnt-orange);
	color: var(--color-cream);
	font-family: var(--font-heading);
	font-size: 1.2rem;
	letter-spacing: 1px;
	border: none;
	border-radius: var(--radius-md);
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.watch-video-btn:hover {
	background: var(--color-charcoal);
	transform: scale(1.05);
	box-shadow: 0 6px 30px rgba(0, 0, 0, 0.4);
}

.watch-video-btn svg {
	width: 24px;
	height: 24px;
	fill: currentColor;
}

/* Plyr customization */
.plyr {
	--plyr-color-main: var(--color-burnt-orange);
	border-radius: var(--radius-lg);
}

.plyr__poster {
	background-size: cover;
}

/* Responsive trophy */
@media (max-width: 768px) {
	.trophy {
		width: 168px;
		height: 228px;
		margin-bottom: -10%;
		animation-name: floating-mobile;
	}

	.trophy .arm {
		width: 30%;
		height: 24%;
		top: 17.5%;
		right: 94%;
		border-width: 7px;
		animation: none;
		transform: translateX(0);
	}

	.trophy .arm.right {
		top: 17.5%;
		left: 94%;
		right: auto;
		border-width: 7px;
		animation: none;
		transform: translateX(0);
	}

	.award-video-wrapper {
		max-width: 100%;
		padding: 0 var(--space-md);
	}

	.watch-video-btn {
		font-size: 1rem;
		padding: var(--space-sm) var(--space-lg);
	}
}

@keyframes floating-mobile {
	from {
		transform: rotate3d(-1, 0.45, 0.2, 7deg) translateY(6px);
	}
	to {
		transform: rotate3d(-0.8, -0.35, 0.15, 4deg) translateY(0px);
	}
}
