:root {
	--bg-main: #0c0d10;
	--bg-surface: #14161c;
	--bg-surface-elevated: #1a1e27;
	--bg-card: rgba(22, 25, 33, 0.85);
	--bg-glass: rgba(12, 13, 16, 0.88);
	
	--cream: #f6f2ea;
	--cream-muted: #d5ccbe;
	--cream-subtle: #9d968b;
	
	--gold: #d4a359;
	--gold-light: #f3cf8a;
	--gold-dark: #a97832;
	--gold-glow: rgba(212, 163, 89, 0.18);
	
	--spice-red: #c84b31;
	--spice-saffron: #e67e22;
	
	--border-light: rgba(246, 242, 234, 0.08);
	--border-gold: rgba(212, 163, 89, 0.28);
	--border-gold-strong: rgba(212, 163, 89, 0.6);
	
	--font-serif: "Cormorant Garamond", Georgia, serif;
	--font-sans: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, sans-serif;
	
	--space-xs: 0.5rem;
	--space-sm: 1rem;
	--space-md: 1.5rem;
	--space-lg: 2.5rem;
	--space-xl: 4rem;
	--space-2xl: 6.5rem;
	
	--radius-sm: 4px;
	--radius-md: 8px;
	--radius-lg: 14px;
	--radius-full: 9999px;
	
	--shadow-luxury: 0 20px 40px -15px rgba(0, 0, 0, 0.7), 0 0 1px 1px rgba(212, 163, 89, 0.1);
	--shadow-glow: 0 0 30px rgba(212, 163, 89, 0.2);
	--transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
	scroll-behavior: smooth;
	background-color: var(--bg-main);
	color: var(--cream);
	font-family: var(--font-sans);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body {
	background-color: var(--bg-main);
	color: var(--cream);
	line-height: 1.65;
	overflow-x: hidden;
	position: relative;
	font-size: 15px;
}

/* Base Grain & Background Glow Overlay */
.bg-ambient-layer {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	pointer-events: none;
	z-index: 0;
	background: 
		radial-gradient(circle at 80% 15%, rgba(212, 163, 89, 0.04) 0%, transparent 45%),
		radial-gradient(circle at 10% 60%, rgba(200, 75, 49, 0.03) 0%, transparent 40%),
		radial-gradient(circle at 50% 90%, rgba(212, 163, 89, 0.03) 0%, transparent 50%);
}

/* Typography styles */
h1, h2, h3, h4, .font-serif {
	font-family: var(--font-serif);
	font-weight: 400;
	color: var(--cream);
	letter-spacing: -0.01em;
}

.text-gold {
	color: var(--gold);
}

.eyebrow {
	font-family: var(--font-sans);
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.22em;
	color: var(--gold);
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
}

.eyebrow::before, .eyebrow::after {
	content: "";
	display: inline-block;
	width: 18px;
	height: 1px;
	background: var(--gold);
	opacity: 0.6;
}

.eyebrow.no-left::before {
	display: none;
}

.section-title {
	font-size: clamp(2.2rem, 5vw, 3.4rem);
	line-height: 1.12;
	margin-top: 0.5rem;
	margin-bottom: 1rem;
}

.section-subtitle {
	color: var(--cream-muted);
	font-size: 1.05rem;
	max-width: 38rem;
	font-weight: 300;
	line-height: 1.7;
}

/* Container & Layout */
.container {
	width: 100%;
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 1.5rem;
	position: relative;
	z-index: 1;
}

.container-narrow {
	max-width: 960px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

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

@media (max-width: 768px) {
	.section-spacing {
		padding: 4rem 0;
	}
}

/* Navigation Header */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
	transition: var(--transition);
	padding: 1.25rem 0;
}

.site-header.scrolled {
	background: var(--bg-glass);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	padding: 0.85rem 0;
	border-bottom: 1px solid var(--border-light);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.nav-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.brand-logo {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	text-decoration: none;
	color: var(--cream);
}

.brand-monogram {
	width: 36px;
	height: 36px;
	border: 1px solid var(--border-gold);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-serif);
	font-size: 1.15rem;
	color: var(--gold);
	background: rgba(20, 22, 28, 0.6);
	transition: var(--transition);
}

.brand-logo:hover .brand-monogram {
	border-color: var(--gold-light);
	box-shadow: 0 0 15px var(--gold-glow);
}

.brand-name {
	font-family: var(--font-serif);
	font-size: 1.4rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-weight: 500;
	display: flex;
	flex-direction: column;
	line-height: 1;
}

.brand-city {
	font-family: var(--font-sans);
	font-size: 0.625rem;
	letter-spacing: 0.25em;
	color: var(--gold);
	margin-top: 3px;
	font-weight: 600;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 2rem;
	list-style: none;
}

.nav-link {
	color: var(--cream-muted);
	text-decoration: none;
	font-size: 0.85rem;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	transition: var(--transition);
	position: relative;
	padding: 0.25rem 0;
}

.nav-link::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0%;
	height: 1px;
	background: var(--gold);
	transition: var(--transition);
}

.nav-link:hover {
	color: var(--cream);
}

.nav-link:hover::after, .nav-link.active::after {
	width: 100%;
}

.nav-actions {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.cart-btn-trigger {
	position: relative;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid var(--border-light);
	color: var(--cream);
	padding: 0.5rem 0.85rem;
	border-radius: var(--radius-sm);
	font-size: 0.8rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	cursor: pointer;
	transition: var(--transition);
}

.cart-btn-trigger:hover {
	border-color: var(--border-gold);
	color: var(--gold-light);
}

.cart-badge-count {
	background: var(--spice-red);
	color: #fff;
	font-size: 0.7rem;
	font-weight: 700;
	padding: 0.1rem 0.4rem;
	border-radius: 99px;
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
	display: none;
	background: transparent;
	border: 1px solid var(--border-light);
	color: var(--cream);
	width: 42px;
	height: 42px;
	border-radius: var(--radius-sm);
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

@media (max-width: 920px) {
	.nav-links {
		display: none;
	}
	.mobile-nav-toggle {
		display: flex;
	}
}

.mobile-menu-drawer {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: var(--bg-main);
	z-index: 99;
	padding: 6rem 2rem 2rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	transform: translateY(-100%);
	transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	border-bottom: 1px solid var(--border-gold);
}

.mobile-menu-drawer.open {
	transform: translateY(0);
}

.mobile-nav-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.mobile-nav-list a {
	font-family: var(--font-serif);
	font-size: 2rem;
	color: var(--cream);
	text-decoration: none;
	transition: var(--transition);
}

.mobile-nav-list a:hover {
	color: var(--gold);
	padding-left: 0.5rem;
}

/* Buttons & Luxury CTAs */
.btn-primary-gold {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	background: linear-gradient(135deg, #d4a359 0%, #b8863b 100%);
	color: #0c0d10;
	font-family: var(--font-sans);
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	padding: 0.9rem 1.8rem;
	border-radius: 0;
	border: none;
	cursor: pointer;
	text-decoration: none;
	transition: var(--transition);
	position: relative;
	overflow: hidden;
}

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

.btn-primary-gold:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(212, 163, 89, 0.35);
	color: #0c0d10;
}

.btn-primary-gold:hover::before {
	left: 100%;
}

.btn-outline-cream {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	background: transparent;
	color: var(--cream);
	font-family: var(--font-sans);
	font-size: 0.82rem;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	padding: 0.9rem 1.8rem;
	border: 1px solid var(--border-light);
	cursor: pointer;
	text-decoration: none;
	transition: var(--transition);
}

.btn-outline-cream:hover {
	border-color: var(--gold);
	color: var(--gold-light);
	background: rgba(212, 163, 89, 0.06);
	transform: translateY(-2px);
}

.btn-sm {
	padding: 0.55rem 1.1rem;
	font-size: 0.75rem;
}

/* Discrete Demo Badge */
.demo-tag {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.25rem 0.65rem;
	font-size: 0.68rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--cream-subtle);
	border: 1px solid rgba(246, 242, 234, 0.08);
	background: rgba(12, 13, 16, 0.6);
	border-radius: var(--radius-sm);
}

.demo-dot {
	width: 5px;
	height: 5px;
	background: var(--gold);
	border-radius: 50%;
	box-shadow: 0 0 6px var(--gold);
}

/* Hero Section */
.hero-section {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 8rem 0 5rem;
	overflow: hidden;
}

.hero-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.hero-bg-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 35%;
	filter: brightness(0.42) contrast(1.15) saturate(1.1);
	transform: scale(1.03);
	animation: heroZoom 20s infinite alternate ease-in-out;
}

@keyframes heroZoom {
	from { transform: scale(1.02); }
	to { transform: scale(1.08); }
}

.hero-gradient-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at center, rgba(12, 13, 16, 0.3) 0%, rgba(12, 13, 16, 0.85) 75%, rgba(12, 13, 16, 0.98) 100%),
		linear-gradient(to bottom, rgba(12, 13, 16, 0.6) 0%, transparent 40%, rgba(12, 13, 16, 0.95) 90%, #0c0d10 100%);
}

.hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 820px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.hero-meta-badge {
	margin-bottom: 1.5rem;
}

.hero-headline {
	font-size: clamp(3.2rem, 7.5vw, 5.8rem);
	line-height: 1.05;
	font-weight: 400;
	color: var(--cream);
	letter-spacing: -0.02em;
	margin-bottom: 1.5rem;
	text-shadow: 0 4px 24px rgba(0, 0, 0, 0.8);
}

.hero-headline span {
	font-style: italic;
	font-weight: 300;
	color: var(--gold-light);
}

.hero-subtitle {
	font-size: clamp(1.05rem, 2.2vw, 1.35rem);
	color: var(--cream-muted);
	font-weight: 300;
	line-height: 1.65;
	max-width: 600px;
	margin-bottom: 2.5rem;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.hero-actions {
	display: flex;
	align-items: center;
	gap: 1.2rem;
	flex-wrap: wrap;
	justify-content: center;
}

.hero-scroll-indicator {
	position: absolute;
	bottom: 2.2rem;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	color: var(--cream-subtle);
	font-size: 0.68rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	text-decoration: none;
	transition: var(--transition);
	z-index: 2;
}

.hero-scroll-indicator:hover {
	color: var(--gold);
}

.scroll-mouse {
	width: 20px;
	height: 32px;
	border: 1px solid var(--border-gold);
	border-radius: 12px;
	position: relative;
}

.scroll-wheel {
	position: absolute;
	top: 6px;
	left: 50%;
	width: 2px;
	height: 6px;
	background: var(--gold);
	transform: translateX(-50%);
	border-radius: 2px;
	animation: scrollDown 2s infinite ease-in-out;
}

@keyframes scrollDown {
	0% { opacity: 1; transform: translate(-50%, 0); }
	60% { opacity: 0.2; transform: translate(-50%, 10px); }
	100% { opacity: 0; transform: translate(-50%, 12px); }
}

/* About Intro Section */
.about-section {
	position: relative;
	border-top: 1px solid var(--border-light);
	border-bottom: 1px solid var(--border-light);
	background: linear-gradient(180deg, rgba(20, 22, 28, 0.4) 0%, rgba(12, 13, 16, 0.8) 100%);
}

.about-intro-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

@media (max-width: 860px) {
	.about-intro-grid {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}
}

.about-quote-lead {
	font-family: var(--font-serif);
	font-size: clamp(1.8rem, 3.2vw, 2.5rem);
	line-height: 1.28;
	color: var(--cream);
	font-weight: 400;
	border-left: 2px solid var(--gold);
	padding-left: 1.5rem;
}

.about-body-text {
	color: var(--cream-muted);
	font-size: 1.05rem;
	line-height: 1.8;
	font-weight: 300;
	display: flex;
	flex-direction: column;
	gap: 1.2rem;
}

.spices-strip {
	display: flex;
	gap: 2rem;
	margin-top: 2rem;
	padding-top: 2rem;
	border-top: 1px solid var(--border-light);
}

.spice-metric {
	display: flex;
	flex-direction: column;
}

.spice-metric-val {
	font-family: var(--font-serif);
	font-size: 1.8rem;
	color: var(--gold);
	line-height: 1;
}

.spice-metric-lbl {
	font-size: 0.75rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--cream-subtle);
	margin-top: 0.4rem;
}

/* Signature Dishes Showcase */
.signature-section {
	position: relative;
	background: #0d0e12;
}

.signature-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-top: 3.5rem;
}

@media (max-width: 1024px) {
	.signature-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

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

.dish-card {
	background: var(--bg-surface);
	border: 1px solid var(--border-light);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: var(--transition);
	position: relative;
	group: pointer;
}

.dish-card:hover {
	border-color: var(--border-gold);
	transform: translateY(-6px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 20px var(--gold-glow);
}

.dish-img-wrap {
	position: relative;
	width: 100%;
	height: 250px;
	overflow: hidden;
	background: #181b22;
}

.dish-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.dish-card:hover .dish-img {
	transform: scale(1.08);
}

.dish-tag {
	position: absolute;
	top: 1rem;
	left: 1rem;
	background: rgba(12, 13, 16, 0.85);
	backdrop-filter: blur(8px);
	border: 1px solid var(--border-gold);
	color: var(--gold-light);
	font-size: 0.68rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	padding: 0.3rem 0.7rem;
	font-weight: 600;
}

.dish-spice-pill {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: rgba(12, 13, 16, 0.85);
	padding: 0.3rem 0.6rem;
	border-radius: var(--radius-sm);
	font-size: 0.7rem;
}

.dish-content {
	padding: 1.6rem;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	justify-content: space-between;
}

.dish-header {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 0.75rem;
	margin-bottom: 0.6rem;
}

.dish-title {
	font-size: 1.45rem;
	line-height: 1.2;
	color: var(--cream);
	transition: var(--transition);
}

.dish-card:hover .dish-title {
	color: var(--gold-light);
}

.dish-price {
	font-family: var(--font-serif);
	font-size: 1.35rem;
	color: var(--gold);
	white-space: nowrap;
	font-weight: 600;
}

.dish-desc {
	color: var(--cream-muted);
	font-size: 0.9rem;
	line-height: 1.6;
	margin-bottom: 1.5rem;
	font-weight: 300;
}

.dish-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 1rem;
	border-top: 1px solid rgba(246, 242, 234, 0.06);
}

.dish-dietary {
	display: flex;
	gap: 0.4rem;
}

.diet-icon-tag {
	font-size: 0.65rem;
	letter-spacing: 0.08em;
	padding: 0.2rem 0.5rem;
	border: 1px solid rgba(246, 242, 234, 0.1);
	border-radius: 2px;
	color: var(--cream-subtle);
}

.dish-order-btn {
	background: transparent;
	border: 1px solid var(--border-gold);
	color: var(--cream);
	font-size: 0.75rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 0.45rem 0.85rem;
	cursor: pointer;
	transition: var(--transition);
}

.dish-order-btn:hover {
	background: var(--gold);
	color: #0c0d10;
}

/* Restaurant Menu Section */
.menu-section {
	position: relative;
	background: #0f1116;
	border-top: 1px solid var(--border-light);
	border-bottom: 1px solid var(--border-light);
}

.menu-nav-tabs {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	flex-wrap: wrap;
	margin: 2.5rem 0 3.5rem;
	border-bottom: 1px solid var(--border-light);
	padding-bottom: 1rem;
}

.menu-tab-btn {
	background: transparent;
	border: none;
	color: var(--cream-muted);
	font-family: var(--font-sans);
	font-size: 0.85rem;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	padding: 0.6rem 1.25rem;
	cursor: pointer;
	position: relative;
	transition: var(--transition);
}

.menu-tab-btn:hover {
	color: var(--cream);
}

.menu-tab-btn.active {
	color: var(--gold-light);
	font-weight: 600;
}

.menu-tab-btn.active::after {
	content: "";
	position: absolute;
	bottom: -1rem;
	left: 50%;
	transform: translateX(-50%);
	width: 28px;
	height: 2px;
	background: var(--gold);
}

.menu-list-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2.5rem 3.5rem;
}

@media (max-width: 860px) {
	.menu-list-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
}

.menu-item-row {
	display: flex;
	flex-direction: column;
	padding-bottom: 1.5rem;
	border-bottom: 1px dashed rgba(246, 242, 234, 0.08);
	transition: var(--transition);
}

.menu-item-row:hover {
	border-bottom-color: var(--border-gold);
}

.menu-item-top {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 0.4rem;
}

.menu-item-name {
	font-size: 1.35rem;
	color: var(--cream);
	display: flex;
	align-items: center;
	gap: 0.6rem;
}

.menu-item-leader {
	flex-grow: 1;
	border-bottom: 1px dotted rgba(246, 242, 234, 0.15);
	margin: 0 0.5rem;
	height: 1px;
}

.menu-item-price {
	font-family: var(--font-serif);
	font-size: 1.25rem;
	color: var(--gold);
	font-weight: 600;
}

.menu-item-desc {
	color: var(--cream-muted);
	font-size: 0.9rem;
	line-height: 1.55;
	font-weight: 300;
	margin-bottom: 0.5rem;
}

.menu-item-tags-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.5rem;
}

.menu-item-tags {
	display: flex;
	gap: 0.4rem;
	flex-wrap: wrap;
}

.quick-add-btn {
	background: rgba(212, 163, 89, 0.08);
	border: 1px solid rgba(212, 163, 89, 0.2);
	color: var(--gold-light);
	font-size: 0.72rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 0.25rem 0.6rem;
	cursor: pointer;
	transition: var(--transition);
}

.quick-add-btn:hover {
	background: var(--gold);
	color: #0c0d10;
}

/* Editorial Food Gallery */
.gallery-section {
	position: relative;
	background: #0c0d10;
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	grid-auto-rows: 150px;
	gap: 1.25rem;
	margin-top: 3.5rem;
}

@media (max-width: 768px) {
	.gallery-grid {
		grid-template-columns: repeat(6, 1fr);
		grid-auto-rows: 140px;
		gap: 0.75rem;
	}
}

.gallery-item {
	position: relative;
	overflow: hidden;
	background: #15181f;
	border: 1px solid var(--border-light);
	cursor: pointer;
}

.gallery-item:hover {
	border-color: var(--border-gold);
}

.gallery-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
	filter: brightness(0.88);
}

.gallery-item:hover .gallery-img {
	transform: scale(1.06);
	filter: brightness(1);
}

.gallery-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(12, 13, 16, 0.85) 0%, transparent 60%);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 1.25rem;
	opacity: 0;
	transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
	opacity: 1;
}

.gallery-caption {
	font-family: var(--font-serif);
	font-size: 1.2rem;
	color: var(--cream);
}

.gallery-tag {
	font-size: 0.68rem;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: var(--gold);
	margin-bottom: 0.2rem;
}

/* Gallery layout shapes */
.gallery-item-1 { grid-column: span 5; grid-row: span 3; }
.gallery-item-2 { grid-column: span 4; grid-row: span 2; }
.gallery-item-3 { grid-column: span 3; grid-row: span 3; }
.gallery-item-4 { grid-column: span 4; grid-row: span 2; }
.gallery-item-5 { grid-column: span 4; grid-row: span 2; }
.gallery-item-6 { grid-column: span 4; grid-row: span 2; }
.gallery-item-7 { grid-column: span 4; grid-row: span 2; }

@media (max-width: 768px) {
	.gallery-item-1 { grid-column: span 6; grid-row: span 2; }
	.gallery-item-2 { grid-column: span 3; grid-row: span 2; }
	.gallery-item-3 { grid-column: span 3; grid-row: span 2; }
	.gallery-item-4 { grid-column: span 6; grid-row: span 2; }
	.gallery-item-5 { grid-column: span 3; grid-row: span 2; }
	.gallery-item-6 { grid-column: span 3; grid-row: span 2; }
	.gallery-item-7 { grid-column: span 6; grid-row: span 2; }
}

/* Experience Feature Blocks */
.experience-section {
	position: relative;
	background: linear-gradient(180deg, #12141a 0%, #0d0f14 100%);
	border-top: 1px solid var(--border-light);
	border-bottom: 1px solid var(--border-light);
}

.experience-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2.5rem;
	margin-top: 3.5rem;
}

@media (max-width: 900px) {
	.experience-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
}

.experience-card {
	padding: 2.5rem 2rem;
	background: rgba(18, 20, 26, 0.7);
	border: 1px solid var(--border-light);
	position: relative;
	transition: var(--transition);
	display: flex;
	flex-direction: column;
}

.experience-card:hover {
	border-color: var(--border-gold);
	transform: translateY(-4px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.experience-icon-wrap {
	width: 52px;
	height: 52px;
	border: 1px solid var(--border-gold);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.75rem;
	color: var(--gold);
	background: rgba(212, 163, 89, 0.05);
}

.experience-num {
	position: absolute;
	top: 2rem;
	right: 2rem;
	font-family: var(--font-serif);
	font-size: 2.5rem;
	color: rgba(246, 242, 234, 0.07);
	line-height: 1;
}

.experience-title {
	font-size: 1.75rem;
	margin-bottom: 0.9rem;
	color: var(--cream);
}

.experience-desc {
	color: var(--cream-muted);
	font-size: 0.95rem;
	line-height: 1.7;
	font-weight: 300;
}

/* Split About "Made With Passion" */
.story-split-section {
	position: relative;
	background: #0c0d10;
}

.split-grid {
	display: grid;
	grid-template-columns: 1fr 1.15fr;
	gap: 4.5rem;
	align-items: center;
}

@media (max-width: 960px) {
	.split-grid {
		grid-template-columns: 1fr;
		gap: 3rem;
	}
}

.split-image-container {
	position: relative;
}

.split-main-image {
	width: 100%;
	height: 540px;
	object-fit: cover;
	border: 1px solid var(--border-light);
	filter: brightness(0.9) contrast(1.05);
}

.split-floating-card {
	position: absolute;
	bottom: -20px;
	right: -20px;
	background: var(--bg-surface-elevated);
	border: 1px solid var(--border-gold);
	padding: 1.5rem;
	max-width: 260px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
}

@media (max-width: 600px) {
	.split-floating-card {
		position: static;
		margin-top: 1rem;
		max-width: 100%;
	}
	.split-main-image {
		height: 380px;
	}
}

.split-badge-num {
	font-family: var(--font-serif);
	font-size: 2.2rem;
	color: var(--gold);
	line-height: 1;
}

.split-badge-text {
	font-size: 0.78rem;
	letter-spacing: 0.08em;
	color: var(--cream-muted);
	margin-top: 0.4rem;
}

.story-content {
	display: flex;
	flex-direction: column;
	gap: 1.4rem;
}

.story-lead-quote {
	font-family: var(--font-serif);
	font-size: 1.65rem;
	color: var(--cream);
	line-height: 1.35;
	font-style: italic;
}

.story-body {
	color: var(--cream-muted);
	font-size: 1rem;
	line-height: 1.8;
	font-weight: 300;
}

.chef-signature-wrap {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	margin-top: 1rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--border-light);
}

.chef-name {
	font-family: var(--font-serif);
	font-size: 1.3rem;
	color: var(--cream);
}

.chef-title {
	font-size: 0.75rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--gold);
}

/* Location Section */
.location-section {
	position: relative;
	background: #111319;
	border-top: 1px solid var(--border-light);
	border-bottom: 1px solid var(--border-light);
}

.location-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3.5rem;
	align-items: center;
	margin-top: 3rem;
}

@media (max-width: 860px) {
	.location-grid {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}
}

.location-info-card {
	background: var(--bg-surface);
	border: 1px solid var(--border-light);
	padding: 2.5rem;
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.info-block {
	display: flex;
	gap: 1.2rem;
}

.info-icon {
	color: var(--gold);
	flex-shrink: 0;
	margin-top: 0.2rem;
}

.info-heading {
	font-size: 0.8rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 0.4rem;
	font-weight: 600;
}

.info-text {
	color: var(--cream-muted);
	font-size: 0.95rem;
	line-height: 1.6;
}

.map-placeholder-card {
	position: relative;
	height: 420px;
	border: 1px solid var(--border-light);
	background: #191c24;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

.map-bg-image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(0.8) contrast(1.2) brightness(0.45);
}

.map-pin-overlay {
	position: absolute;
	top: 45%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	z-index: 2;
}

.pin-icon {
	width: 44px;
	height: 44px;
	background: var(--spice-red);
	color: #fff;
	border-radius: 50% 50% 50% 0;
	transform: rotate(-45deg);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 0 20px rgba(200, 75, 49, 0.6);
	border: 2px solid #fff;
}

.pin-icon svg {
	transform: rotate(45deg);
}

.map-bottom-bar {
	position: relative;
	z-index: 2;
	background: rgba(12, 13, 16, 0.92);
	backdrop-filter: blur(10px);
	padding: 1.25rem 1.75rem;
	border-top: 1px solid var(--border-light);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	flex-wrap: wrap;
}

/* Call to Action CTA Section */
.cta-section {
	position: relative;
	padding: var(--space-2xl) 0;
	text-align: center;
	background: radial-gradient(circle at center, rgba(212, 163, 89, 0.12) 0%, rgba(12, 13, 16, 0.98) 70%);
	overflow: hidden;
}

.cta-ornament {
	width: 40px;
	height: 40px;
	margin: 0 auto 1.5rem;
	color: var(--gold);
	opacity: 0.8;
}

.cta-headline {
	font-size: clamp(2.8rem, 6vw, 4.5rem);
	line-height: 1.1;
	color: var(--cream);
	margin-bottom: 1.2rem;
}

.cta-desc {
	font-size: 1.1rem;
	color: var(--cream-muted);
	max-width: 540px;
	margin: 0 auto 2.5rem;
	font-weight: 300;
}

.cta-actions {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.2rem;
	flex-wrap: wrap;
}

/* Footer */
.site-footer {
	background: #08090c;
	border-top: 1px solid var(--border-light);
	padding: 5rem 0 2rem;
	position: relative;
}

.footer-top-grid {
	display: grid;
	grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
	gap: 3.5rem;
	margin-bottom: 4rem;
}

@media (max-width: 990px) {
	.footer-top-grid {
		grid-template-columns: 1fr 1fr;
		gap: 2.5rem;
	}
}

@media (max-width: 580px) {
	.footer-top-grid {
		grid-template-columns: 1fr;
	}
}

.footer-col-title {
	font-size: 1.15rem;
	color: var(--cream);
	margin-bottom: 1.2rem;
	letter-spacing: 0.05em;
}

.footer-desc {
	color: var(--cream-subtle);
	font-size: 0.88rem;
	line-height: 1.7;
	max-width: 320px;
	margin: 1rem 0 1.5rem;
}

.footer-links {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.footer-links a {
	color: var(--cream-muted);
	text-decoration: none;
	font-size: 0.88rem;
	transition: var(--transition);
}

.footer-links a:hover {
	color: var(--gold);
	padding-left: 0.3rem;
}

.insta-mini-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.5rem;
}

.insta-thumb {
	aspect-ratio: 1;
	overflow: hidden;
	border: 1px solid var(--border-light);
	display: block;
}

.insta-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition);
}

.insta-thumb:hover img {
	transform: scale(1.1);
}

.footer-bottom-bar {
	padding-top: 2rem;
	border-top: 1px solid rgba(246, 242, 234, 0.06);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	flex-wrap: wrap;
	font-size: 0.8rem;
	color: var(--cream-subtle);
}

/* Modals & Drawers */
.modal-backdrop {
	position: fixed;
	inset: 0;
	background: rgba(8, 9, 12, 0.85);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	z-index: 200;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.5rem;
	animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

.modal-container {
	background: var(--bg-surface-elevated);
	border: 1px solid var(--border-gold);
	width: 100%;
	max-width: 580px;
	padding: 2.5rem;
	position: relative;
	box-shadow: var(--shadow-luxury);
	max-height: 90vh;
	overflow-y: auto;
}

.modal-close-btn {
	position: absolute;
	top: 1.25rem;
	right: 1.25rem;
	background: transparent;
	border: 1px solid var(--border-light);
	color: var(--cream-muted);
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: var(--transition);
}

.modal-close-btn:hover {
	border-color: var(--gold);
	color: var(--gold);
}

/* Slideout Order / Cart Drawer */
.drawer-backdrop {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(4px);
	z-index: 210;
	display: flex;
	justify-content: flex-end;
}

.drawer-panel {
	width: 100%;
	max-width: 440px;
	height: 100vh;
	background: var(--bg-surface);
	border-left: 1px solid var(--border-gold);
	display: flex;
	flex-direction: column;
	padding: 2rem;
	box-shadow: -15px 0 35px rgba(0, 0, 0, 0.8);
	animation: slideInRight 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideInRight {
	from { transform: translateX(100%); }
	to { transform: translateX(0); }
}

.drawer-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 1.2rem;
	border-bottom: 1px solid var(--border-light);
}

.drawer-body {
	flex-grow: 1;
	overflow-y: auto;
	padding: 1.5rem 0;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.drawer-footer {
	padding-top: 1.5rem;
	border-top: 1px solid var(--border-light);
}

.cart-item-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.9rem;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid var(--border-light);
}

.cart-qty-ctrl {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	border: 1px solid var(--border-light);
	padding: 0.2rem 0.5rem;
}

.cart-qty-btn {
	background: transparent;
	border: none;
	color: var(--cream);
	cursor: pointer;
	font-weight: bold;
}

/* Form controls */
.form-group {
	margin-bottom: 1.25rem;
}

.form-label {
	display: block;
	font-size: 0.75rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--cream-muted);
	margin-bottom: 0.4rem;
}

.form-input, .form-select, .form-textarea {
	width: 100%;
	padding: 0.75rem 1rem;
	background: rgba(12, 13, 16, 0.7);
	border: 1px solid var(--border-light);
	color: var(--cream);
	font-family: var(--font-sans);
	font-size: 0.9rem;
	border-radius: 0;
	transition: var(--transition);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
	outline: none;
	border-color: var(--gold);
	box-shadow: 0 0 10px var(--gold-glow);
}

/* Toast */
.toast-msg {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	background: var(--bg-surface-elevated);
	border: 1px solid var(--gold);
	color: var(--cream);
	padding: 1rem 1.5rem;
	box-shadow: var(--shadow-luxury);
	z-index: 300;
	display: flex;
	align-items: center;
	gap: 0.75rem;
	animation: slideUp 0.3s ease;
}

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