:root {
	--bg-primary: #09090b;
	--bg-secondary: #121216;
	--bg-card: #18181d;
	--bg-card-hover: #22222a;
	--bg-glass: rgba(18, 18, 22, 0.85);
	--bg-glass-light: rgba(255, 255, 255, 0.03);
	
	--gold-300: #f5e4b2;
	--gold-400: #e5c378;
	--gold-500: #d4af37;
	--gold-600: #b89228;
	--gold-700: #8c6e1c;
	--gold-gradient: linear-gradient(135deg, #f5e4b2 0%, #d4af37 50%, #9f781a 100%);
	--gold-gradient-hover: linear-gradient(135deg, #fff2cc 0%, #e5c378 50%, #b89228 100%);
	--gold-subtle: rgba(212, 175, 55, 0.12);
	--gold-border: rgba(212, 175, 55, 0.28);
	--gold-border-bright: rgba(212, 175, 55, 0.7);
	--gold-glow: 0 0 30px rgba(212, 175, 55, 0.25);
	
	--text-primary: #fcfbf9;
	--text-secondary: #d1cdc7;
	--text-muted: #8e8a83;
	--text-gold: #e5c378;
	
	--border-subtle: rgba(255, 255, 255, 0.08);
	--danger: #e05252;
	--success: #4ade80;
	
	--font-serif: 'Cormorant Garamond', Georgia, serif;
	--font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
	
	--radius-sm: 6px;
	--radius-md: 12px;
	--radius-lg: 20px;
	--radius-full: 9999px;
	
	--shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.05);
	--shadow-gold: 0 12px 35px -8px rgba(212, 175, 55, 0.35);
}

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

html {
	scroll-behavior: smooth;
}

body {
	background-color: var(--bg-primary);
	color: var(--text-primary);
	font-family: var(--font-sans);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
	position: relative;
}

/* Texture overlay */
body::before {
	content: "";
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	pointer-events: none;
	background-image: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.06) 0%, transparent 70%),
	                  radial-gradient(circle at 90% 60%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
	z-index: 0;
}

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

.gold-gradient-text {
	background: var(--gold-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	display: inline-block;
}

.gold-line {
	height: 1px;
	width: 60px;
	background: var(--gold-gradient);
	margin: 0.75rem auto;
}

.gold-line-left {
	height: 1px;
	width: 50px;
	background: var(--gold-gradient);
	margin: 0.6rem 0;
}

/* Header & Navigation */
.header-nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	transition: all 0.35s ease;
	padding: 1.25rem 2rem;
	background: transparent;
}

.header-nav.scrolled {
	background: rgba(9, 9, 11, 0.92);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	padding: 0.85rem 2rem;
	border-bottom: 1px solid var(--gold-border);
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
	max-width: 1280px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

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

.brand-symbol {
	width: 38px;
	height: 38px;
	border: 1px solid var(--gold-500);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gold-400);
	background: rgba(212, 175, 55, 0.08);
	box-shadow: inset 0 0 10px rgba(212, 175, 55, 0.2);
}

.brand-title {
	font-family: var(--font-serif);
	font-size: 1.7rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	line-height: 1;
}

.brand-subtitle {
	font-size: 0.68rem;
	text-transform: uppercase;
	letter-spacing: 0.25em;
	color: var(--gold-400);
	margin-top: 2px;
}

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

.nav-link {
	color: var(--text-secondary);
	text-decoration: none;
	font-size: 0.9rem;
	font-weight: 500;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	transition: color 0.2s ease, transform 0.2s ease;
	position: relative;
	padding: 0.25rem 0;
}

.nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 1px;
	background: var(--gold-500);
	transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover, .nav-link.active {
	color: var(--gold-300);
}

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

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

.mobile-menu-btn {
	display: none;
	background: transparent;
	border: 1px solid var(--gold-border);
	color: var(--gold-400);
	padding: 0.5rem;
	border-radius: var(--radius-sm);
	cursor: pointer;
}

/* Buttons */
.btn-gold {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	background: var(--gold-gradient);
	color: #09090b;
	font-family: var(--font-sans);
	font-size: 0.88rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 0.8rem 1.6rem;
	border-radius: var(--radius-sm);
	border: none;
	cursor: pointer;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
	background: var(--gold-gradient-hover);
	transform: translateY(-2px);
	box-shadow: 0 16px 35px -6px rgba(212, 175, 55, 0.5);
}

.btn-gold:active {
	transform: translateY(0);
}

.btn-outline-gold {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	background: rgba(18, 18, 22, 0.6);
	color: var(--gold-300);
	border: 1px solid var(--gold-border-bright);
	font-family: var(--font-sans);
	font-size: 0.88rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 0.8rem 1.6rem;
	border-radius: var(--radius-sm);
	cursor: pointer;
	text-decoration: none;
	transition: all 0.3s ease;
	backdrop-filter: blur(8px);
}

.btn-outline-gold:hover {
	background: rgba(212, 175, 55, 0.15);
	border-color: var(--gold-400);
	color: #fff;
	transform: translateY(-2px);
}

.btn-sm {
	padding: 0.5rem 1rem;
	font-size: 0.8rem;
}

/* Hero Section */
.hero-section {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 7rem 1.5rem 4rem;
	background-color: #060608;
	overflow: hidden;
}

.hero-bg-wrapper {
	position: absolute;
	inset: 0;
	z-index: 1;
}

.hero-bg-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	filter: brightness(0.35) contrast(1.15) saturate(1.1);
	transform: scale(1.04);
	animation: heroZoom 24s ease-in-out infinite alternate;
}

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

.hero-overlay {
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at center, rgba(9, 9, 11, 0.4) 0%, rgba(9, 9, 11, 0.85) 75%, #09090b 100%),
	            linear-gradient(180deg, rgba(9, 9, 11, 0.6) 0%, transparent 40%, #09090b 100%);
}

.hero-content {
	position: relative;
	z-index: 2;
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	padding: 0.4rem 1.2rem;
	background: rgba(212, 175, 55, 0.12);
	border: 1px solid var(--gold-border);
	border-radius: var(--radius-full);
	color: var(--gold-300);
	font-size: 0.78rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	margin-bottom: 1.5rem;
	backdrop-filter: blur(10px);
}

.hero-badge svg {
	color: var(--gold-400);
}

.hero-title {
	font-size: clamp(2.75rem, 7vw, 5.5rem);
	line-height: 1.05;
	font-weight: 700;
	margin-bottom: 1.25rem;
	color: var(--text-primary);
	text-shadow: 0 4px 24px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
	font-size: clamp(1.05rem, 2vw, 1.35rem);
	color: var(--text-secondary);
	max-width: 680px;
	margin: 0 auto 2.5rem;
	font-weight: 300;
	line-height: 1.6;
}

.hero-actions {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.25rem;
	flex-wrap: wrap;
	margin-bottom: 3.5rem;
}

.hero-accolades {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2.5rem;
	flex-wrap: wrap;
	padding-top: 2rem;
	border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.accolade-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.accolade-stars {
	color: var(--gold-400);
	letter-spacing: 2px;
	font-size: 0.85rem;
	margin-bottom: 0.2rem;
}

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

/* Quick Bar */
.quick-reserve-bar {
	max-width: 1000px;
	margin: -2.5rem auto 4rem;
	position: relative;
	z-index: 10;
	padding: 0 1.5rem;
}

.quick-bar-inner {
	background: rgba(24, 24, 29, 0.95);
	backdrop-filter: blur(20px);
	border: 1px solid var(--gold-border);
	border-radius: var(--radius-md);
	padding: 1.25rem 1.75rem;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)) auto;
	gap: 1.25rem;
	align-items: center;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.quick-item {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.quick-label {
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--gold-400);
	font-weight: 600;
}

.quick-input-select {
	background: #0d0d10;
	border: 1px solid var(--border-subtle);
	color: var(--text-primary);
	padding: 0.55rem 0.75rem;
	border-radius: var(--radius-sm);
	font-size: 0.85rem;
	font-family: var(--font-sans);
	outline: none;
	width: 100%;
}

.quick-input-select:focus {
	border-color: var(--gold-500);
}

/* Section styling */
.section {
	padding: 6rem 1.5rem;
	position: relative;
	z-index: 2;
}

.section-darker {
	background-color: #070709;
}

.section-container {
	max-width: 1200px;
	margin: 0 auto;
}

.section-header {
	text-align: center;
	max-width: 700px;
	margin: 0 auto 3.5rem;
}

.section-kicker {
	font-size: 0.78rem;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: var(--gold-400);
	font-weight: 600;
	margin-bottom: 0.5rem;
	display: block;
}

.section-heading {
	font-size: clamp(2rem, 4vw, 3rem);
	color: var(--text-primary);
	margin-bottom: 0.75rem;
}

.section-description {
	color: var(--text-muted);
	font-size: 1rem;
	line-height: 1.6;
}

/* About Section */
.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.about-story {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.about-quote {
	font-family: var(--font-serif);
	font-size: 1.4rem;
	font-style: italic;
	color: var(--gold-300);
	line-height: 1.45;
	border-left: 2px solid var(--gold-500);
	padding-left: 1.25rem;
	margin: 0.75rem 0;
}

.about-features {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
	margin-top: 1rem;
}

.feature-box {
	background: var(--bg-card);
	border: 1px solid var(--border-subtle);
	padding: 1.25rem;
	border-radius: var(--radius-sm);
	transition: border-color 0.3s ease;
}

.feature-box:hover {
	border-color: var(--gold-border);
}

.feature-title {
	font-family: var(--font-serif);
	font-size: 1.15rem;
	color: var(--gold-300);
	margin-bottom: 0.4rem;
}

.feature-desc {
	font-size: 0.85rem;
	color: var(--text-muted);
}

.about-images-composition {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.25rem;
}

.about-img-main {
	grid-column: span 2;
	height: 320px;
	border-radius: var(--radius-md);
	overflow: hidden;
	position: relative;
	border: 1px solid var(--gold-border);
}

.about-img-sub1, .about-img-sub2 {
	height: 190px;
	border-radius: var(--radius-md);
	overflow: hidden;
	position: relative;
	border: 1px solid var(--border-subtle);
}

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

.about-images-composition:hover .about-img {
	transform: scale(1.04);
}

.about-badge-floating {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: rgba(9, 9, 11, 0.92);
	border: 1px solid var(--gold-500);
	padding: 1rem 1.5rem;
	border-radius: var(--radius-md);
	text-align: center;
	backdrop-filter: blur(12px);
	box-shadow: 0 10px 30px rgba(0,0,0,0.8);
	z-index: 3;
}

.about-badge-year {
	font-family: var(--font-serif);
	font-size: 2rem;
	font-weight: 700;
	color: var(--gold-400);
	line-height: 1;
}

.about-badge-caption {
	font-size: 0.7rem;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	color: var(--text-secondary);
}

/* Chef Tasting Menu Banner */
.tasting-menu-card {
	background: linear-gradient(145deg, #18181e 0%, #121216 100%);
	border: 1px solid var(--gold-border-bright);
	border-radius: var(--radius-lg);
	padding: 3rem;
	margin: 4rem 0;
	position: relative;
	overflow: hidden;
	box-shadow: var(--shadow-card), var(--gold-glow);
}

.tasting-menu-card::before {
	content: "";
	position: absolute;
	top: -50%;
	right: -10%;
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
	pointer-events: none;
}

.tasting-grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 3rem;
	align-items: center;
}

.tasting-tag {
	display: inline-block;
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: var(--gold-400);
	margin-bottom: 0.5rem;
}

.tasting-title {
	font-size: 2.25rem;
	margin-bottom: 1rem;
}

.tasting-steps {
	display: grid;
	gap: 1rem;
	margin: 1.5rem 0;
}

.tasting-step-item {
	display: flex;
	align-items: baseline;
	gap: 0.85rem;
	font-size: 0.95rem;
	color: var(--text-secondary);
}

.step-num {
	font-family: var(--font-serif);
	color: var(--gold-400);
	font-weight: 700;
	font-size: 1.1rem;
}

.tasting-price-box {
	background: rgba(9, 9, 11, 0.6);
	border: 1px solid var(--gold-border);
	border-radius: var(--radius-md);
	padding: 2rem;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.tasting-price {
	font-family: var(--font-serif);
	font-size: 3rem;
	font-weight: 700;
	color: var(--gold-300);
	line-height: 1;
	margin: 0.5rem 0;
}

.tasting-wine-pair {
	font-size: 0.85rem;
	color: var(--text-muted);
	margin-bottom: 1.5rem;
}

/* Menu Section */
.menu-controls {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	margin-bottom: 3rem;
}

.menu-category-tabs {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.category-tab-btn {
	background: transparent;
	border: 1px solid var(--border-subtle);
	color: var(--text-secondary);
	padding: 0.6rem 1.25rem;
	border-radius: var(--radius-full);
	font-size: 0.88rem;
	cursor: pointer;
	transition: all 0.25s ease;
	font-family: var(--font-sans);
}

.category-tab-btn:hover {
	border-color: var(--gold-border);
	color: var(--gold-300);
}

.category-tab-btn.active {
	background: var(--gold-500);
	border-color: var(--gold-500);
	color: #09090b;
	font-weight: 600;
	box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.menu-filter-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	flex-wrap: wrap;
	padding: 0.75rem 1.25rem;
	background: var(--bg-secondary);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-md);
}

.search-input-wrap {
	position: relative;
	min-width: 240px;
	flex: 1;
}

.menu-search-input {
	width: 100%;
	background: #09090b;
	border: 1px solid var(--border-subtle);
	padding: 0.5rem 0.85rem 0.5rem 2.2rem;
	border-radius: var(--radius-sm);
	color: var(--text-primary);
	font-size: 0.85rem;
	outline: none;
}

.menu-search-input:focus {
	border-color: var(--gold-500);
}

.search-icon-pos {
	position: absolute;
	left: 0.75rem;
	top: 50%;
	transform: translateY(-50%);
	color: var(--text-muted);
	pointer-events: none;
}

.dietary-tags-group {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.dietary-chip {
	background: transparent;
	border: 1px solid var(--border-subtle);
	color: var(--text-muted);
	padding: 0.35rem 0.75rem;
	border-radius: var(--radius-full);
	font-size: 0.75rem;
	cursor: pointer;
	transition: all 0.2s ease;
}

.dietary-chip.active {
	background: rgba(212, 175, 55, 0.15);
	border-color: var(--gold-500);
	color: var(--gold-300);
}

/* Menu Grid */
.menu-items-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
	gap: 1.75rem;
}

.menu-card {
	background: var(--bg-card);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-md);
	overflow: hidden;
	transition: all 0.35s ease;
	display: flex;
	flex-direction: column;
	position: relative;
}

.menu-card:hover {
	transform: translateY(-4px);
	border-color: var(--gold-border-bright);
	box-shadow: 0 14px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(212, 175, 55, 0.1);
}

.menu-card-img-wrap {
	height: 200px;
	position: relative;
	overflow: hidden;
	background: #111;
}

.menu-card-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.menu-card:hover .menu-card-img {
	transform: scale(1.06);
}

.menu-special-badge {
	position: absolute;
	top: 0.75rem;
	left: 0.75rem;
	background: var(--gold-gradient);
	color: #09090b;
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	padding: 0.25rem 0.65rem;
	border-radius: var(--radius-sm);
	box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.menu-card-body {
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.menu-card-header {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 0.5rem;
}

.menu-item-name {
	font-family: var(--font-serif);
	font-size: 1.35rem;
	color: var(--text-primary);
	font-weight: 600;
}

.menu-item-price {
	font-family: var(--font-serif);
	font-size: 1.35rem;
	color: var(--gold-400);
	font-weight: 700;
	white-space: nowrap;
}

.menu-item-desc {
	color: var(--text-muted);
	font-size: 0.88rem;
	line-height: 1.5;
	margin-bottom: 1.25rem;
	flex: 1;
}

.menu-card-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 0.85rem;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	gap: 0.5rem;
}

.menu-tags-list {
	display: flex;
	gap: 0.35rem;
	flex-wrap: wrap;
}

.item-tag {
	font-size: 0.7rem;
	padding: 0.15rem 0.5rem;
	border-radius: var(--radius-full);
	background: rgba(255, 255, 255, 0.05);
	color: var(--text-secondary);
}

.item-tag.wine-tag {
	background: rgba(212, 175, 55, 0.1);
	color: var(--gold-300);
	border: 1px solid var(--gold-border);
}

/* Gallery Section */
.gallery-filter-tabs {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	margin-bottom: 2.5rem;
	flex-wrap: wrap;
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 1.25rem;
}

.gallery-item {
	position: relative;
	height: 280px;
	border-radius: var(--radius-md);
	overflow: hidden;
	cursor: pointer;
	border: 1px solid var(--border-subtle);
}

.gallery-item:nth-child(2), .gallery-item:nth-child(5) {
	grid-column: span 1;
}

@media (min-width: 900px) {
	.gallery-item.span-2 {
		grid-column: span 2;
	}
}

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

.gallery-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(0deg, rgba(9, 9, 11, 0.95) 0%, rgba(9, 9, 11, 0.3) 50%, transparent 100%);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 1.5rem;
	opacity: 0;
	transition: opacity 0.3s ease;
}

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

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

.gallery-caption-title {
	font-family: var(--font-serif);
	font-size: 1.25rem;
	color: var(--gold-300);
	margin-bottom: 0.2rem;
}

.gallery-caption-sub {
	font-size: 0.78rem;
	color: var(--text-secondary);
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

/* Lightbox Modal */
.lightbox-backdrop {
	position: fixed;
	inset: 0;
	background: rgba(5, 5, 7, 0.95);
	backdrop-filter: blur(12px);
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2rem;
	animation: fadeIn 0.25s ease;
}

.lightbox-content {
	max-width: 900px;
	width: 100%;
	background: var(--bg-card);
	border: 1px solid var(--gold-border);
	border-radius: var(--radius-md);
	overflow: hidden;
	position: relative;
	box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9);
}

.lightbox-img {
	width: 100%;
	max-height: 70vh;
	object-fit: cover;
	display: block;
}

.lightbox-footer {
	padding: 1.25rem 1.75rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: var(--bg-secondary);
}

.lightbox-close-btn {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: rgba(9, 9, 11, 0.8);
	border: 1px solid var(--gold-border);
	color: var(--text-primary);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 1.2rem;
	transition: all 0.2s ease;
}

.lightbox-close-btn:hover {
	background: var(--gold-500);
	color: #09090b;
}

/* Testimonials / Press Quotes */
.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2rem;
}

.testimonial-card {
	background: var(--bg-card);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-md);
	padding: 2.25rem;
	position: relative;
	transition: border-color 0.3s ease;
}

.testimonial-card:hover {
	border-color: var(--gold-border);
}

.quote-icon {
	font-family: var(--font-serif);
	font-size: 4rem;
	line-height: 1;
	color: rgba(212, 175, 55, 0.2);
	position: absolute;
	top: 1rem;
	right: 1.5rem;
}

.testimonial-text {
	font-family: var(--font-serif);
	font-size: 1.15rem;
	font-style: italic;
	color: var(--text-secondary);
	line-height: 1.6;
	margin-bottom: 1.5rem;
	position: relative;
	z-index: 1;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 0.85rem;
}

.author-avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1px solid var(--gold-border);
	background: #222;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gold-400);
	font-weight: 700;
	font-size: 0.9rem;
}

.author-name {
	font-weight: 600;
	font-size: 0.95rem;
	color: var(--text-primary);
}

.author-title {
	font-size: 0.78rem;
	color: var(--gold-400);
}

/* Opening Hours & Location */
.info-section-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
}

.hours-card {
	background: var(--bg-card);
	border: 1px solid var(--gold-border);
	border-radius: var(--radius-md);
	padding: 2.5rem;
	box-shadow: var(--shadow-card);
}

.hours-list {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	margin-top: 1.5rem;
}

.hours-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 0.75rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hours-day {
	font-weight: 600;
	color: var(--text-primary);
}

.hours-time {
	color: var(--gold-300);
	font-size: 0.92rem;
}

.hours-note {
	font-size: 0.8rem;
	color: var(--text-muted);
	margin-top: 1.5rem;
	font-style: italic;
}

/* Location Card & Map */
.location-card {
	background: var(--bg-card);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-md);
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.location-info-pane {
	padding: 2.25rem;
}

.location-contact-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	margin-bottom: 1.25rem;
}

.loc-icon-circle {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(212, 175, 55, 0.1);
	border: 1px solid var(--gold-border);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gold-400);
	flex-shrink: 0;
}

.loc-text-title {
	font-weight: 600;
	font-size: 0.9rem;
	color: var(--text-primary);
	margin-bottom: 0.15rem;
}

.loc-text-val {
	font-size: 0.85rem;
	color: var(--text-secondary);
}

/* Interactive Map Representation */
.interactive-map-preview {
	height: 220px;
	background: #111116;
	position: relative;
	overflow: hidden;
	border-top: 1px solid var(--border-subtle);
}

.map-grid-lines {
	position: absolute;
	inset: 0;
	background-image: 
		linear-gradient(rgba(212, 175, 55, 0.07) 1px, transparent 1px),
		linear-gradient(90deg, rgba(212, 175, 55, 0.07) 1px, transparent 1px);
	background-size: 30px 30px;
}

.map-pin-pulse {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: flex;
	flex-direction: column;
	align-items: center;
}

.pin-marker {
	width: 24px;
	height: 24px;
	background: var(--gold-gradient);
	border-radius: 50% 50% 50% 0;
	transform: rotate(-45deg);
	border: 2px solid #09090b;
	box-shadow: 0 0 15px rgba(212, 175, 55, 0.8);
	animation: bounce 2s infinite ease-in-out;
}

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

.pin-label {
	background: rgba(9, 9, 11, 0.9);
	border: 1px solid var(--gold-border);
	padding: 0.25rem 0.75rem;
	border-radius: var(--radius-sm);
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--gold-300);
	margin-top: 0.5rem;
	white-space: nowrap;
}

.map-action-overlay {
	position: absolute;
	bottom: 0.85rem;
	right: 0.85rem;
}

/* Contact / Inquiries */
.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 3rem;
	align-items: start;
}

.contact-form {
	background: var(--bg-card);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-md);
	padding: 2.25rem;
}

.form-group {
	margin-bottom: 1.25rem;
}

.form-label {
	display: block;
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--gold-400);
	margin-bottom: 0.4rem;
	font-weight: 600;
}

.form-input, .form-textarea, .form-select {
	width: 100%;
	background: #0d0d11;
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-sm);
	padding: 0.75rem 0.9rem;
	color: var(--text-primary);
	font-family: var(--font-sans);
	font-size: 0.9rem;
	outline: none;
	transition: border-color 0.2s ease;
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
	border-color: var(--gold-500);
	box-shadow: 0 0 0 1px var(--gold-500);
}

/* Reservation Modal & Full Experience */
.modal-backdrop {
	position: fixed;
	inset: 0;
	background: rgba(5, 5, 7, 0.88);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
	animation: modalFadeIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	overflow-y: auto;
}

@keyframes modalFadeIn {
	from { opacity: 0; transform: scale(0.97); }
	to { opacity: 1; transform: scale(1); }
}

.reservation-modal {
	background: #141419;
	border: 1px solid var(--gold-border-bright);
	border-radius: var(--radius-lg);
	max-width: 680px;
	width: 100%;
	padding: 2.5rem;
	position: relative;
	box-shadow: 0 25px 80px rgba(0, 0, 0, 0.9), var(--gold-glow);
	max-height: 90vh;
	overflow-y: auto;
}

.modal-close-btn {
	position: absolute;
	top: 1.25rem;
	right: 1.25rem;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid var(--border-subtle);
	color: var(--text-muted);
	width: 36px;
	height: 36px;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
	transition: all 0.2s ease;
}

.modal-close-btn:hover {
	background: var(--gold-500);
	color: #09090b;
}

.stepper-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 2rem;
	position: relative;
}

.stepper-header::before {
	content: "";
	position: absolute;
	top: 14px;
	left: 20px;
	right: 20px;
	height: 1px;
	background: var(--border-subtle);
	z-index: 0;
}

.step-item {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.35rem;
}

.step-circle {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: var(--bg-card);
	border: 1px solid var(--border-subtle);
	color: var(--text-muted);
	font-size: 0.75rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.25s ease;
}

.step-item.active .step-circle {
	background: var(--gold-500);
	border-color: var(--gold-500);
	color: #09090b;
	box-shadow: 0 0 12px rgba(212, 175, 55, 0.5);
}

.step-item.completed .step-circle {
	background: var(--gold-600);
	color: #09090b;
	border-color: var(--gold-600);
}

.step-label {
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--text-muted);
}

.step-item.active .step-label {
	color: var(--gold-300);
	font-weight: 600;
}

/* Area selection cards */
.seating-area-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 0.85rem;
	margin: 1rem 0;
}

.seating-card {
	background: #0d0d12;
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-sm);
	padding: 1rem;
	cursor: pointer;
	text-align: center;
	transition: all 0.25s ease;
}

.seating-card:hover {
	border-color: var(--gold-border);
}

.seating-card.selected {
	background: rgba(212, 175, 55, 0.12);
	border-color: var(--gold-500);
	box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.seating-icon {
	font-size: 1.5rem;
	margin-bottom: 0.4rem;
	color: var(--gold-400);
}

.seating-name {
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--text-primary);
}

.seating-desc {
	font-size: 0.72rem;
	color: var(--text-muted);
	margin-top: 0.2rem;
}

/* Time slot pills */
.time-slots-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
	gap: 0.6rem;
	margin: 1rem 0;
}

.time-slot-btn {
	background: #0d0d12;
	border: 1px solid var(--border-subtle);
	color: var(--text-secondary);
	padding: 0.55rem 0.25rem;
	border-radius: var(--radius-sm);
	font-size: 0.85rem;
	cursor: pointer;
	text-align: center;
	transition: all 0.2s ease;
}

.time-slot-btn:hover {
	border-color: var(--gold-border);
	color: var(--gold-300);
}

.time-slot-btn.selected {
	background: var(--gold-500);
	color: #09090b;
	font-weight: 700;
	border-color: var(--gold-500);
}

/* Booking confirmation ticket */
.booking-confirmed-card {
	background: linear-gradient(145deg, #181820 0%, #101015 100%);
	border: 1px solid var(--gold-border-bright);
	border-radius: var(--radius-md);
	padding: 2rem;
	text-align: center;
	box-shadow: var(--shadow-gold);
}

.booking-ref-badge {
	display: inline-block;
	background: rgba(212, 175, 55, 0.15);
	border: 1px solid var(--gold-border-bright);
	padding: 0.35rem 1.25rem;
	border-radius: var(--radius-full);
	font-family: monospace;
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--gold-300);
	letter-spacing: 0.15em;
	margin: 1rem 0;
}

.booking-summary-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	text-align: left;
	background: rgba(0, 0, 0, 0.3);
	padding: 1.25rem;
	border-radius: var(--radius-sm);
	margin: 1.5rem 0;
}

.sum-item-label {
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--gold-400);
}

.sum-item-val {
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--text-primary);
}

/* Footer */
.footer {
	background: #050507;
	border-top: 1px solid var(--gold-border);
	padding: 4.5rem 1.5rem 2rem;
	position: relative;
	z-index: 10;
}

.footer-grid {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
	gap: 3rem;
	margin-bottom: 3.5rem;
}

.footer-col-title {
	font-family: var(--font-serif);
	font-size: 1.25rem;
	color: var(--gold-300);
	margin-bottom: 1.25rem;
}

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

.footer-link {
	color: var(--text-muted);
	text-decoration: none;
	font-size: 0.88rem;
	transition: color 0.2s ease;
}

.footer-link:hover {
	color: var(--gold-300);
}

.social-icons {
	display: flex;
	gap: 0.75rem;
	margin-top: 1.25rem;
}

.social-icon-btn {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1px solid var(--border-subtle);
	background: var(--bg-card);
	color: var(--gold-400);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	text-decoration: none;
	transition: all 0.2s ease;
}

.social-icon-btn:hover {
	background: var(--gold-500);
	color: #09090b;
	border-color: var(--gold-500);
}

/* Demo Notice Banner */
.footer-disclaimer-box {
	max-width: 1200px;
	margin: 0 auto;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.07);
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 0.75rem;
}

.demo-website-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.35rem 1rem;
	background: rgba(212, 175, 55, 0.08);
	border: 1px dashed var(--gold-border-bright);
	border-radius: var(--radius-full);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	color: var(--gold-400);
	text-transform: uppercase;
}

.footer-copyright {
	font-size: 0.8rem;
	color: var(--text-muted);
}

/* Animations */
@keyframes fadeIn {
	from { opacity: 0; transform: translateY(8px); }
	to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
	animation: fadeIn 0.4s ease forwards;
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
	.header-nav {
		padding: 1rem 1.25rem;
	}
	
	.nav-links {
		display: none;
	}
	
	.mobile-menu-btn {
		display: block;
	}
	
	.about-grid,
	.tasting-grid,
	.info-section-grid,
	.contact-grid {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}
	
	.footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 2rem;
	}
	
	.menu-items-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 600px) {
	.footer-grid {
		grid-template-columns: 1fr;
	}
	
	.hero-title {
		font-size: 2.4rem;
	}
	
	.reservation-modal {
		padding: 1.5rem;
	}
	
	.booking-summary-grid {
		grid-template-columns: 1fr;
	}
}

/* Mobile Drawer */
.mobile-drawer {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(9, 9, 11, 0.98);
	backdrop-filter: blur(20px);
	z-index: 200;
	padding: 2rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	animation: fadeIn 0.25s ease;
}

.mobile-drawer-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

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

.mobile-nav-item a {
	font-family: var(--font-serif);
	font-size: 1.8rem;
	color: var(--text-primary);
	text-decoration: none;
	transition: color 0.2s ease;
}

.mobile-nav-item a:hover {
	color: var(--gold-400);
}
