:root {
	--color-maroon: #6E1423;
	--color-maroon-dark: #440913;
	--color-maroon-light: #8E1F32;
	--color-maroon-subtle: #FBECEE;
	
	--color-gold: #C69230;
	--color-gold-hover: #AF7E24;
	--color-gold-light: #F6C86D;
	--color-gold-bg: #FFF8EB;
	--color-gold-border: #F3DEB3;

	--color-green: #2B694F;
	--color-green-light: #EBF5F0;
	--color-green-dark: #1E4D39;

	--color-cream: #FAF7F2;
	--color-cream-alt: #F4EFE6;
	--color-card: #FFFFFF;
	--color-surface: #F8F4EC;

	--color-charcoal: #231E1C;
	--color-body: #4A4440;
	--color-muted: #7A726D;
	--color-border: #E8DFD3;
	--color-border-light: #F0E9DF;

	--color-danger: #C0392B;
	--color-danger-bg: #FDF2F1;
	--color-success: #27AE60;

	--radius-sm: 6px;
	--radius-md: 12px;
	--radius-lg: 20px;
	--radius-xl: 28px;
	--radius-full: 9999px;

	--shadow-sm: 0 2px 6px rgba(40, 20, 15, 0.05);
	--shadow-md: 0 6px 18px rgba(40, 20, 15, 0.08);
	--shadow-lg: 0 16px 36px rgba(40, 20, 15, 0.12);
	--shadow-float: 0 20px 45px rgba(110, 20, 35, 0.2);

	--font-heading: 'Playfair Display', Georgia, serif;
	--font-body: 'Outfit', 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	background-color: var(--color-cream);
	color: var(--color-body);
	font-family: var(--font-body);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
	padding-bottom: 80px; /* space for mobile sticky bar */
}

@media (min-width: 768px) {
	body {
		padding-bottom: 0;
	}
}

a {
	color: inherit;
	text-decoration: none;
}

button, input, select, textarea {
	font-family: inherit;
}

/* TOP ANNOUNCEMENT BANNER */
.top-banner {
	background: var(--color-maroon-dark);
	color: #FFF2D6;
	font-size: 0.825rem;
	padding: 0.5rem 1rem;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	letter-spacing: 0.02em;
	border-bottom: 1px solid rgba(198, 146, 48, 0.3);
}
.top-banner strong {
	color: var(--color-gold-light);
}
.top-banner .badge-pill {
	background: rgba(246, 200, 109, 0.2);
	border: 1px solid rgba(246, 200, 109, 0.4);
	padding: 0.15rem 0.6rem;
	border-radius: var(--radius-full);
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
}

/* HEADER & NAVBAR */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(250, 247, 242, 0.96);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--color-border);
	transition: box-shadow 0.2s ease;
}
.site-header.scrolled {
	box-shadow: var(--shadow-md);
}
.header-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0.75rem 1.25rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.brand-logo {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	cursor: pointer;
	text-decoration: none;
}
.brand-mark {
	width: 44px;
	height: 44px;
	background: linear-gradient(135deg, var(--color-maroon), var(--color-maroon-dark));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-gold-light);
	font-family: var(--font-heading);
	font-size: 1.4rem;
	font-weight: 700;
	border: 2px solid var(--color-gold);
	box-shadow: 0 3px 10px rgba(110, 20, 35, 0.25);
	flex-shrink: 0;
}
.brand-text {
	display: flex;
	flex-direction: column;
}
.brand-title {
	font-family: var(--font-heading);
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--color-maroon);
	line-height: 1.1;
	letter-spacing: -0.01em;
}
.brand-subtitle {
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--color-gold);
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.nav-links {
	display: none;
	align-items: center;
	gap: 1.75rem;
	list-style: none;
}
@media (min-width: 900px) {
	.nav-links {
		display: flex;
	}
}
.nav-link {
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--color-charcoal);
	transition: color 0.15s ease;
	position: relative;
	padding: 0.25rem 0;
}
.nav-link:hover, .nav-link.active {
	color: var(--color-maroon);
}
.nav-link.active::after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 100%;
	height: 2px;
	background: var(--color-gold);
	border-radius: 2px;
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.phone-quick-link {
	display: none;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--color-maroon);
	padding: 0.4rem 0.8rem;
	background: var(--color-maroon-subtle);
	border-radius: var(--radius-full);
	border: 1px solid rgba(110, 20, 35, 0.15);
}
@media (min-width: 640px) {
	.phone-quick-link {
		display: flex;
	}
}

.cart-toggle-btn {
	position: relative;
	background: var(--color-gold);
	color: var(--color-maroon-dark);
	border: none;
	padding: 0.5rem 0.9rem;
	border-radius: var(--radius-full);
	font-weight: 700;
	font-size: 0.9rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	cursor: pointer;
	box-shadow: 0 3px 10px rgba(198, 146, 48, 0.25);
	transition: transform 0.15s ease, background 0.15s ease;
}
.cart-toggle-btn:hover {
	background: var(--color-gold-light);
	transform: translateY(-1px);
}
.cart-badge-count {
	background: var(--color-maroon);
	color: white;
	font-size: 0.75rem;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
}

.mobile-menu-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	background: white;
	border: 1px solid var(--color-border);
	width: 42px;
	height: 42px;
	border-radius: var(--radius-md);
	cursor: pointer;
	color: var(--color-charcoal);
}
@media (min-width: 900px) {
	.mobile-menu-btn {
		display: none;
	}
}

/* MOBILE NAV OVERLAY */
.mobile-nav-drawer {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: rgba(0,0,0,0.6);
	z-index: 200;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.25s ease;
}
.mobile-nav-drawer.open {
	opacity: 1;
	pointer-events: auto;
}
.mobile-nav-content {
	position: absolute;
	top: 0;
	right: 0;
	width: 85%;
	max-width: 340px;
	height: 100%;
	background: var(--color-cream);
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	box-shadow: -5px 0 25px rgba(0,0,0,0.2);
	transform: translateX(100%);
	transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-nav-drawer.open .mobile-nav-content {
	transform: translateX(0);
}
.mobile-nav-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--color-border);
	margin-bottom: 1.5rem;
}
.mobile-nav-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}
.mobile-nav-item button {
	width: 100%;
	text-align: left;
	background: white;
	border: 1px solid var(--color-border-light);
	border-radius: var(--radius-md);
	padding: 0.9rem 1.1rem;
	font-size: 1.05rem;
	font-weight: 600;
	color: var(--color-charcoal);
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
}
.mobile-nav-item.active button {
	background: var(--color-maroon);
	color: white;
	border-color: var(--color-maroon);
}

/* BUTTONS & CTAS */
.btn-primary {
	background: var(--color-maroon);
	color: white;
	border: none;
	padding: 0.8rem 1.6rem;
	border-radius: var(--radius-full);
	font-weight: 700;
	font-size: 1rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	cursor: pointer;
	box-shadow: 0 4px 14px rgba(110, 20, 35, 0.3);
	transition: all 0.2s ease;
}
.btn-primary:hover {
	background: var(--color-maroon-dark);
	transform: translateY(-2px);
	box-shadow: 0 6px 18px rgba(110, 20, 35, 0.4);
}

.btn-gold {
	background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
	color: var(--color-maroon-dark);
	border: 1px solid var(--color-gold-hover);
	padding: 0.8rem 1.6rem;
	border-radius: var(--radius-full);
	font-weight: 700;
	font-size: 1rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	cursor: pointer;
	box-shadow: 0 4px 14px rgba(198, 146, 48, 0.35);
	transition: all 0.2s ease;
}
.btn-gold:hover {
	background: var(--color-gold-light);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(198, 146, 48, 0.45);
}

.btn-outline {
	background: transparent;
	color: var(--color-maroon);
	border: 2px solid var(--color-maroon);
	padding: 0.75rem 1.5rem;
	border-radius: var(--radius-full);
	font-weight: 700;
	font-size: 1rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	cursor: pointer;
	transition: all 0.2s ease;
}
.btn-outline:hover {
	background: var(--color-maroon);
	color: white;
}

.btn-secondary-soft {
	background: white;
	color: var(--color-charcoal);
	border: 1px solid var(--color-border);
	padding: 0.75rem 1.3rem;
	border-radius: var(--radius-full);
	font-weight: 600;
	font-size: 0.95rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	cursor: pointer;
	box-shadow: var(--shadow-sm);
	transition: all 0.15s ease;
}
.btn-secondary-soft:hover {
	border-color: var(--color-gold);
	color: var(--color-maroon);
	background: var(--color-gold-bg);
}

/* HERO SECTION */
.hero-section {
	position: relative;
	background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-cream-alt) 100%);
	padding: 2.5rem 1.25rem 3.5rem;
	overflow: hidden;
}
.hero-container {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
	align-items: center;
}
@media (min-width: 960px) {
	.hero-container {
		grid-template-columns: 1.15fr 0.95fr;
		gap: 3.5rem;
		padding: 1.5rem 0;
	}
}

.hero-content {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.trust-badge-pill {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: white;
	padding: 0.35rem 0.9rem;
	border-radius: var(--radius-full);
	border: 1px solid var(--color-gold-border);
	box-shadow: var(--shadow-sm);
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--color-charcoal);
	width: fit-content;
}
.stars-gold {
	color: #E5A100;
	letter-spacing: 0.1em;
}

.hero-title {
	font-family: var(--font-heading);
	font-size: clamp(2.1rem, 5vw, 3.4rem);
	line-height: 1.15;
	color: var(--color-maroon-dark);
	font-weight: 800;
	letter-spacing: -0.02em;
}
.hero-title .highlight-gold {
	color: var(--color-maroon);
	position: relative;
	display: inline-block;
}
.hero-title .script-accent {
	font-style: italic;
	color: var(--color-gold);
	font-weight: 600;
}

.hero-lede {
	font-size: clamp(1.05rem, 2vw, 1.2rem);
	color: var(--color-body);
	line-height: 1.6;
	max-width: 580px;
}

.hero-cta-cluster {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	margin-top: 0.5rem;
}

.quick-stats-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.75rem;
	margin-top: 1.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--color-border);
}
.stat-box {
	display: flex;
	flex-direction: column;
}
.stat-number {
	font-family: var(--font-heading);
	font-size: 1.35rem;
	font-weight: 700;
	color: var(--color-maroon);
	line-height: 1.1;
}
.stat-label {
	font-size: 0.75rem;
	color: var(--color-muted);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	margin-top: 0.2rem;
}

/* HERO VISUAL COLLAGE */
.hero-visual-card {
	position: relative;
}
.hero-image-wrapper {
	position: relative;
	border-radius: var(--radius-xl);
	overflow: hidden;
	box-shadow: var(--shadow-lg);
	border: 6px solid white;
	aspect-ratio: 4 / 3.4;
	background: #331018;
}
.hero-main-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.6s ease;
}
.hero-visual-card:hover .hero-main-img {
	transform: scale(1.03);
}

.hero-float-badge {
	position: absolute;
	bottom: -15px;
	left: -10px;
	background: white;
	padding: 0.85rem 1.25rem;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
	border: 1px solid var(--color-border);
	display: flex;
	align-items: center;
	gap: 0.75rem;
	max-width: 280px;
}
@media (min-width: 480px) {
	.hero-float-badge {
		left: 15px;
		bottom: 15px;
	}
}
.float-badge-icon {
	width: 42px;
	height: 42px;
	background: var(--color-gold-bg);
	border: 1px solid var(--color-gold);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.3rem;
	flex-shrink: 0;
}
.float-badge-text strong {
	display: block;
	font-size: 0.9rem;
	color: var(--color-charcoal);
	line-height: 1.2;
}
.float-badge-text span {
	font-size: 0.75rem;
	color: var(--color-green);
	font-weight: 600;
}

.hero-status-pill {
	position: absolute;
	top: 15px;
	right: 15px;
	background: rgba(35, 30, 28, 0.85);
	backdrop-filter: blur(8px);
	color: white;
	padding: 0.4rem 0.9rem;
	border-radius: var(--radius-full);
	font-size: 0.8rem;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}
.status-indicator-dot {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: #2ECC71;
	box-shadow: 0 0 8px #2ECC71;
	animation: pulse 2s infinite;
}
@keyframes pulse {
	0% { transform: scale(0.95); opacity: 0.8; }
	50% { transform: scale(1.2); opacity: 1; }
	100% { transform: scale(0.95); opacity: 0.8; }
}

/* HIGHLIGHTS STRIP */
.highlights-strip {
	background: white;
	border-top: 1px solid var(--color-border);
	border-bottom: 1px solid var(--color-border);
	padding: 2.5rem 1.25rem;
}
.highlights-container {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 1.75rem;
}
.highlight-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
}
.highlight-icon-box {
	width: 50px;
	height: 50px;
	background: var(--color-maroon-subtle);
	border: 1px solid rgba(110, 20, 35, 0.15);
	color: var(--color-maroon);
	border-radius: var(--radius-md);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	flex-shrink: 0;
}
.highlight-item h4 {
	font-family: var(--font-heading);
	font-size: 1.15rem;
	color: var(--color-charcoal);
	margin-bottom: 0.25rem;
}
.highlight-item p {
	font-size: 0.875rem;
	color: var(--color-muted);
	line-height: 1.45;
}

/* SECTION COMMONS */
.section-wrapper {
	padding: 4rem 1.25rem;
}
.section-wrapper.alt-bg {
	background: var(--color-surface);
}
.section-container {
	max-width: 1200px;
	margin: 0 auto;
}
.section-header {
	text-align: center;
	max-width: 680px;
	margin: 0 auto 3rem;
}
.section-tag {
	font-size: 0.8rem;
	font-weight: 700;
	color: var(--color-gold);
	text-transform: uppercase;
	letter-spacing: 0.12em;
	display: block;
	margin-bottom: 0.5rem;
}
.section-title {
	font-family: var(--font-heading);
	font-size: clamp(1.8rem, 4vw, 2.75rem);
	color: var(--color-maroon-dark);
	line-height: 1.2;
	margin-bottom: 0.85rem;
}
.section-desc {
	font-size: 1.05rem;
	color: var(--color-muted);
	line-height: 1.55;
}

/* FEATURED DISHES GRID */
.featured-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.75rem;
}
.dish-card {
	background: white;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--color-border);
	display: flex;
	flex-direction: column;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.dish-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
	border-color: var(--color-gold-border);
}
.dish-image-box {
	position: relative;
	width: 100%;
	height: 200px;
	overflow: hidden;
	background: #2a1117;
}
.dish-image-box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}
.dish-card:hover .dish-image-box img {
	transform: scale(1.05);
}
.dish-badge {
	position: absolute;
	top: 12px;
	left: 12px;
	background: var(--color-maroon);
	color: white;
	font-size: 0.75rem;
	font-weight: 700;
	padding: 0.25rem 0.65rem;
	border-radius: var(--radius-full);
	box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.dish-price-tag {
	position: absolute;
	bottom: 12px;
	right: 12px;
	background: rgba(35, 30, 28, 0.9);
	color: var(--color-gold-light);
	font-weight: 800;
	font-size: 1.05rem;
	padding: 0.3rem 0.75rem;
	border-radius: var(--radius-md);
	backdrop-filter: blur(4px);
}
.dish-body {
	padding: 1.25rem;
	display: flex;
	flex-direction: column;
	flex: 1;
}
.dish-title {
	font-family: var(--font-heading);
	font-size: 1.25rem;
	color: var(--color-charcoal);
	margin-bottom: 0.4rem;
}
.dish-desc {
	font-size: 0.875rem;
	color: var(--color-muted);
	line-height: 1.45;
	margin-bottom: 1rem;
	flex: 1;
}
.dish-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 0.75rem;
	border-top: 1px solid var(--color-border-light);
}
.dish-tag-list {
	display: flex;
	gap: 0.35rem;
	flex-wrap: wrap;
}
.tag-mini {
	font-size: 0.7rem;
	padding: 0.15rem 0.45rem;
	background: var(--color-cream-alt);
	border-radius: var(--radius-sm);
	color: var(--color-charcoal);
	font-weight: 600;
}

.btn-add-cart {
	background: var(--color-maroon-subtle);
	color: var(--color-maroon);
	border: 1px solid rgba(110, 20, 35, 0.2);
	font-weight: 700;
	font-size: 0.85rem;
	padding: 0.45rem 0.9rem;
	border-radius: var(--radius-full);
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	transition: all 0.15s ease;
}
.btn-add-cart:hover {
	background: var(--color-maroon);
	color: white;
}

/* MENU PAGE CONTROLS */
.menu-controls-bar {
	background: white;
	padding: 1.25rem;
	border-radius: var(--radius-lg);
	border: 1px solid var(--color-border);
	box-shadow: var(--shadow-sm);
	margin-bottom: 2rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
@media (min-width: 768px) {
	.menu-controls-bar {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}
}
.menu-search-box {
	position: relative;
	flex: 1;
	max-width: 400px;
}
.menu-search-input {
	width: 100%;
	padding: 0.7rem 1rem 0.7rem 2.4rem;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-full);
	font-size: 0.95rem;
	background: var(--color-cream);
	color: var(--color-charcoal);
}
.menu-search-input:focus {
	outline: none;
	border-color: var(--color-maroon);
	background: white;
}
.search-icon-pos {
	position: absolute;
	left: 0.85rem;
	top: 50%;
	transform: translateY(-50%);
	color: var(--color-muted);
	pointer-events: none;
}

.category-pills-scroll {
	display: flex;
	gap: 0.5rem;
	overflow-x: auto;
	padding-bottom: 0.5rem;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: thin;
}
.cat-pill {
	background: white;
	border: 1px solid var(--color-border);
	padding: 0.55rem 1.1rem;
	border-radius: var(--radius-full);
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--color-charcoal);
	cursor: pointer;
	white-space: nowrap;
	transition: all 0.15s ease;
	display: flex;
	align-items: center;
	gap: 0.4rem;
}
.cat-pill:hover {
	border-color: var(--color-maroon);
	color: var(--color-maroon);
}
.cat-pill.active {
	background: var(--color-maroon);
	color: white;
	border-color: var(--color-maroon);
	box-shadow: 0 3px 10px rgba(110, 20, 35, 0.25);
}

.daily-specials-banner {
	background: linear-gradient(135deg, var(--color-gold-bg), #FFF1D6);
	border: 1px solid var(--color-gold-border);
	border-radius: var(--radius-lg);
	padding: 1.25rem 1.5rem;
	margin-bottom: 2.5rem;
	display: flex;
	align-items: center;
	gap: 1.25rem;
}
.specials-icon {
	font-size: 2rem;
	flex-shrink: 0;
}
.specials-text h4 {
	font-family: var(--font-heading);
	color: var(--color-maroon);
	font-size: 1.15rem;
	margin-bottom: 0.2rem;
}
.specials-text p {
	font-size: 0.9rem;
	color: var(--color-charcoal);
}

/* CATERING PAGE */
.catering-hero-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
	margin-bottom: 3.5rem;
}
@media (min-width: 960px) {
	.catering-hero-grid {
		grid-template-columns: 1.1fr 0.9fr;
		align-items: start;
	}
}

.catering-package-card {
	background: white;
	border-radius: var(--radius-xl);
	border: 1px solid var(--color-border);
	padding: 2rem;
	box-shadow: var(--shadow-md);
	position: relative;
	display: flex;
	flex-direction: column;
	transition: transform 0.2s ease;
}
.catering-package-card.highlight {
	border: 2px solid var(--color-gold);
	background: linear-gradient(180deg, #FFFFFF 0%, #FFFDF9 100%);
}
.catering-package-badge {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--color-gold);
	color: var(--color-maroon-dark);
	font-size: 0.75rem;
	font-weight: 800;
	padding: 0.3rem 0.9rem;
	border-radius: var(--radius-full);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.tray-menu-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.25rem;
	margin: 2rem 0;
}
.tray-item-row {
	background: white;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	padding: 1rem 1.25rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
}
.tray-info h5 {
	font-size: 1rem;
	font-weight: 700;
	color: var(--color-charcoal);
	margin-bottom: 0.15rem;
}
.tray-info p {
	font-size: 0.8rem;
	color: var(--color-muted);
}
.tray-prices {
	text-align: right;
	white-space: nowrap;
}
.tray-price-small {
	font-size: 0.85rem;
	color: var(--color-body);
}
.tray-price-large {
	font-size: 1rem;
	font-weight: 800;
	color: var(--color-maroon);
}

/* INQUIRY FORM CARD */
.form-card {
	background: white;
	border-radius: var(--radius-xl);
	padding: 2rem;
	border: 1px solid var(--color-border);
	box-shadow: var(--shadow-lg);
}
.form-title {
	font-family: var(--font-heading);
	font-size: 1.6rem;
	color: var(--color-maroon);
	margin-bottom: 0.4rem;
}
.form-subtitle {
	font-size: 0.9rem;
	color: var(--color-muted);
	margin-bottom: 1.5rem;
}
.form-grid-2 {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}
@media (min-width: 600px) {
	.form-grid-2 {
		grid-template-columns: 1fr 1fr;
	}
}
.form-group {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	margin-bottom: 1rem;
}
.form-label {
	font-size: 0.85rem;
	font-weight: 700;
	color: var(--color-charcoal);
}
.form-input, .form-select, .form-textarea {
	width: 100%;
	padding: 0.75rem 0.95rem;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	font-size: 0.95rem;
	background: var(--color-cream);
	color: var(--color-charcoal);
	transition: border-color 0.15s ease, background 0.15s ease;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
	outline: none;
	border-color: var(--color-maroon);
	background: white;
}
.form-textarea {
	resize: vertical;
	min-height: 100px;
}

/* ABOUT PAGE */
.about-story-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	align-items: center;
}
@media (min-width: 960px) {
	.about-story-grid {
		grid-template-columns: 1fr 1fr;
	}
}
.about-image-stack {
	position: relative;
}
.about-img-main {
	width: 100%;
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow-lg);
	border: 6px solid white;
	object-fit: cover;
	aspect-ratio: 4 / 3.2;
}
.about-img-accent {
	position: absolute;
	bottom: -20px;
	right: -10px;
	width: 48%;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
	border: 4px solid white;
	object-fit: cover;
	aspect-ratio: 1 / 1;
}

.values-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 1.5rem;
	margin-top: 3rem;
}
.value-card {
	background: white;
	padding: 1.75rem;
	border-radius: var(--radius-lg);
	border: 1px solid var(--color-border);
	box-shadow: var(--shadow-sm);
}
.value-icon {
	font-size: 2rem;
	margin-bottom: 0.75rem;
}
.value-card h4 {
	font-family: var(--font-heading);
	font-size: 1.2rem;
	color: var(--color-maroon);
	margin-bottom: 0.4rem;
}
.value-card p {
	font-size: 0.9rem;
	color: var(--color-body);
	line-height: 1.5;
}

/* CONTACT & LOCATION */
.contact-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
}
@media (min-width: 960px) {
	.contact-grid {
		grid-template-columns: 1fr 1fr;
	}
}
.info-card-box {
	background: white;
	border-radius: var(--radius-xl);
	padding: 2rem;
	border: 1px solid var(--color-border);
	box-shadow: var(--shadow-md);
	display: flex;
	flex-direction: column;
	gap: 1.75rem;
}
.info-item-row {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
}
.info-item-icon {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--color-maroon-subtle);
	color: var(--color-maroon);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	flex-shrink: 0;
}
.info-item-content h5 {
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--color-gold);
	font-weight: 700;
	margin-bottom: 0.2rem;
}
.info-item-content p {
	font-size: 1.05rem;
	font-weight: 600;
	color: var(--color-charcoal);
	line-height: 1.4;
}
.info-item-content .subnote {
	font-size: 0.85rem;
	color: var(--color-muted);
	font-weight: 400;
	margin-top: 0.25rem;
}

.hours-table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 0.5rem;
}
.hours-table td {
	padding: 0.4rem 0;
	font-size: 0.9rem;
	border-bottom: 1px dashed var(--color-border-light);
}
.hours-table td:last-child {
	text-align: right;
	font-weight: 600;
	color: var(--color-charcoal);
}
.hours-table tr.today {
	color: var(--color-maroon);
	font-weight: 700;
}
.hours-table tr.today td {
	color: var(--color-maroon);
}

.map-embed-wrapper {
	width: 100%;
	height: 280px;
	border-radius: var(--radius-lg);
	overflow: hidden;
	border: 1px solid var(--color-border);
	position: relative;
	background: #EAE6DF;
}
.map-embed-wrapper iframe {
	width: 100%;
	height: 100%;
	border: none;
}

/* REVIEWS & TESTIMONIALS */
.reviews-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.5rem;
}
.review-card {
	background: white;
	padding: 1.75rem;
	border-radius: var(--radius-lg);
	border: 1px solid var(--color-border);
	box-shadow: var(--shadow-sm);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.review-quote {
	font-size: 0.95rem;
	font-style: italic;
	color: var(--color-charcoal);
	line-height: 1.6;
	margin-bottom: 1.25rem;
	position: relative;
}
.review-author {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}
.reviewer-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--color-gold-bg);
	border: 1px solid var(--color-gold);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	color: var(--color-maroon);
	font-size: 0.9rem;
}
.reviewer-meta strong {
	display: block;
	font-size: 0.9rem;
	color: var(--color-charcoal);
}
.reviewer-meta span {
	font-size: 0.75rem;
	color: var(--color-muted);
}

/* FOOTER */
.site-footer {
	background: var(--color-maroon-dark);
	color: #FFF2D6;
	padding: 4rem 1.25rem 2rem;
	border-top: 3px solid var(--color-gold);
}
.footer-container {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 2.5rem;
	margin-bottom: 3rem;
}
.footer-col h4 {
	font-family: var(--font-heading);
	color: var(--color-gold-light);
	font-size: 1.25rem;
	margin-bottom: 1.25rem;
}
.footer-col p {
	font-size: 0.9rem;
	line-height: 1.6;
	color: rgba(255, 242, 214, 0.85);
	margin-bottom: 0.75rem;
}
.footer-links {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
}
.footer-links a {
	color: rgba(255, 242, 214, 0.85);
	font-size: 0.9rem;
	transition: color 0.15s ease;
	cursor: pointer;
}
.footer-links a:hover {
	color: var(--color-gold-light);
	text-decoration: underline;
}
.footer-bottom {
	max-width: 1200px;
	margin: 0 auto;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255, 242, 214, 0.15);
	text-align: center;
	font-size: 0.8rem;
	color: rgba(255, 242, 214, 0.6);
}

/* STICKY MOBILE CONVERSION BAR */
.sticky-mobile-bar {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background: rgba(255, 255, 255, 0.98);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-top: 1px solid var(--color-border);
	box-shadow: 0 -4px 16px rgba(0,0,0,0.12);
	padding: 0.6rem 0.8rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.5rem;
	z-index: 150;
}
@media (min-width: 768px) {
	.sticky-mobile-bar {
		display: none;
	}
}
.mobile-action-call {
	flex: 1;
	background: var(--color-maroon-subtle);
	color: var(--color-maroon);
	border: 1px solid rgba(110, 20, 35, 0.2);
	border-radius: var(--radius-full);
	padding: 0.65rem 0.5rem;
	font-weight: 700;
	font-size: 0.875rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	text-decoration: none;
}
.mobile-action-order {
	flex: 1.3;
	background: var(--color-maroon);
	color: white;
	border: none;
	border-radius: var(--radius-full);
	padding: 0.65rem 0.5rem;
	font-weight: 700;
	font-size: 0.875rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	box-shadow: 0 2px 8px rgba(110, 20, 35, 0.3);
}
.mobile-action-map {
	background: white;
	color: var(--color-charcoal);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-full);
	padding: 0.65rem 0.75rem;
	font-weight: 700;
	font-size: 0.85rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.3rem;
}

/* CART & CHECKOUT DRAWER */
.cart-drawer-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.6);
	z-index: 250;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.25s ease;
}
.cart-drawer-overlay.open {
	opacity: 1;
	pointer-events: auto;
}
.cart-drawer-panel {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	max-width: 440px;
	height: 100%;
	background: var(--color-cream);
	display: flex;
	flex-direction: column;
	box-shadow: -8px 0 30px rgba(0,0,0,0.25);
	transform: translateX(100%);
	transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.cart-drawer-overlay.open .cart-drawer-panel {
	transform: translateX(0);
}
.cart-header {
	padding: 1.25rem 1.5rem;
	background: white;
	border-bottom: 1px solid var(--color-border);
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.cart-header h3 {
	font-family: var(--font-heading);
	color: var(--color-maroon);
	font-size: 1.35rem;
}
.cart-close-btn {
	background: transparent;
	border: none;
	font-size: 1.5rem;
	cursor: pointer;
	color: var(--color-muted);
	padding: 0.25rem;
	line-height: 1;
}
.cart-body {
	flex: 1;
	overflow-y: auto;
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.cart-item-card {
	background: white;
	border-radius: var(--radius-md);
	border: 1px solid var(--color-border);
	padding: 1rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 0.75rem;
}
.cart-item-info h5 {
	font-size: 0.95rem;
	color: var(--color-charcoal);
	margin-bottom: 0.2rem;
}
.cart-item-info .item-customization {
	font-size: 0.75rem;
	color: var(--color-muted);
}
.cart-item-info .item-price {
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--color-maroon);
	margin-top: 0.2rem;
}
.qty-stepper {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	background: var(--color-cream);
	border-radius: var(--radius-full);
	padding: 0.2rem 0.4rem;
	border: 1px solid var(--color-border);
}
.qty-btn {
	width: 26px;
	height: 26px;
	border-radius: 50%;
	border: none;
	background: white;
	font-weight: 800;
	color: var(--color-charcoal);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}
.qty-val {
	font-size: 0.9rem;
	font-weight: 700;
	min-width: 18px;
	text-align: center;
}

.cart-footer {
	background: white;
	border-top: 1px solid var(--color-border);
	padding: 1.25rem 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
}
.cart-subtotal-row {
	display: flex;
	justify-content: space-between;
	font-size: 0.9rem;
	color: var(--color-muted);
}
.cart-total-row {
	display: flex;
	justify-content: space-between;
	font-size: 1.2rem;
	font-weight: 800;
	color: var(--color-maroon);
	padding-top: 0.5rem;
	border-top: 1px solid var(--color-border-light);
}

/* MODALS */
.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.65);
	backdrop-filter: blur(4px);
	z-index: 300;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s ease;
}
.modal-overlay.open {
	opacity: 1;
	pointer-events: auto;
}
.modal-dialog {
	background: white;
	border-radius: var(--radius-xl);
	width: 100%;
	max-width: 520px;
	max-height: 90vh;
	overflow-y: auto;
	box-shadow: var(--shadow-lg);
	position: relative;
	transform: translateY(20px);
	transition: transform 0.25s ease;
	padding: 1.75rem;
}
.modal-overlay.open .modal-dialog {
	transform: translateY(0);
}

/* TOAST NOTIFICATION */
.toast-msg {
	position: fixed;
	bottom: 90px;
	right: 20px;
	background: var(--color-maroon-dark);
	color: white;
	padding: 0.85rem 1.25rem;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
	border: 1px solid var(--color-gold);
	display: flex;
	align-items: center;
	gap: 0.75rem;
	z-index: 350;
	animation: slideInUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	max-width: 90%;
}
@media (min-width: 768px) {
	.toast-msg {
		bottom: 30px;
		right: 30px;
	}
}
@keyframes slideInUp {
	from { transform: translateY(40px); opacity: 0; }
	to { transform: translateY(0); opacity: 1; }
}

/* UTILITY CLASSES */
.text-center { text-align: center; }
.text-gold { color: var(--color-gold); }
.text-maroon { color: var(--color-maroon); }
.fw-bold { font-weight: 700; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.w-100 { width: 100%; }
