/* ==========================================================================
   EL CLAN — Tapas · Bar · Málaga
   Design System & Editorial Stylesheet
   Mediterranean Dark Aesthetics
   ========================================================================== */

:root {
	--bg-base: #0a0a0c;
	--bg-surface: #111215;
	--bg-surface-elevated: #18191e;
	--bg-surface-hover: #21232a;
	--bg-glass: rgba(14, 15, 18, 0.75);
	--bg-glass-card: rgba(22, 23, 28, 0.7);

	--fg-primary: #f6f3ec;
	--fg-secondary: #d5cebf;
	--fg-muted: #9c9485;
	--fg-subtle: #686256;

	--accent-gold: #c5a880;
	--accent-gold-light: #e5cfae;
	--accent-gold-dark: #8c714c;
	--accent-gold-glow: rgba(197, 168, 128, 0.18);

	--accent-terracotta: #d95d39;
	--accent-terracotta-hover: #e66f4c;
	--accent-terracotta-dark: #a83d1e;
	--accent-terracotta-subtle: rgba(217, 93, 57, 0.12);

	--border-subtle: rgba(246, 243, 236, 0.08);
	--border-medium: rgba(246, 243, 236, 0.14);
	--border-gold: rgba(197, 168, 128, 0.28);
	--border-gold-strong: rgba(197, 168, 128, 0.6);

	--font-serif: "Cormorant Garamond", Georgia, serif;
	--font-display: "Cinzel", "Cormorant Garamond", Georgia, serif;
	--font-sans: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

	--radius-sm: 4px;
	--radius-md: 8px;
	--radius-lg: 14px;
	--radius-full: 9999px;

	--shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
	--shadow-md: 0 8px 24px rgba(0, 0, 0, 0.5);
	--shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.7);
	--shadow-gold: 0 8px 30px rgba(197, 168, 128, 0.12);

	--transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
	--transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
	--transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);

	--container-max: 1240px;
	--header-height: 80px;
}

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

html {
	scroll-behavior: smooth;
	background-color: var(--bg-base);
	color: var(--fg-primary);
	font-family: var(--font-sans);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body {
	background-color: var(--bg-base);
	color: var(--fg-primary);
	overflow-x: hidden;
	min-height: 100vh;
	position: relative;
}

/* Texture Overlay */
.bg-grain {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	opacity: 0.028;
	z-index: 99999;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-serif);
	font-weight: 500;
	line-height: 1.15;
	color: var(--fg-primary);
	letter-spacing: -0.01em;
}

.font-display {
	font-family: var(--font-display);
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.font-serif {
	font-family: var(--font-serif);
}

.font-sans {
	font-family: var(--font-sans);
}

p {
	color: var(--fg-secondary);
	font-size: 1rem;
	line-height: 1.7;
}

a {
	color: inherit;
	text-decoration: none;
	transition: color var(--transition-fast);
}

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

button {
	font-family: inherit;
	cursor: pointer;
	border: none;
	background: none;
	outline: none;
}

/* Layout Utilities */
.container {
	max-width: var(--container-max);
	margin: 0 auto;
	padding: 0 1.5rem;
}

.section-padding {
	padding: 6.5rem 0;
}

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

/* Top Demo Banner */
.demo-top-banner {
	background: #111215;
	border-bottom: 1px solid var(--border-subtle);
	color: var(--fg-muted);
	font-size: 0.75rem;
	padding: 0.4rem 1rem;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	letter-spacing: 0.05em;
	z-index: 1001;
	position: relative;
}

.demo-top-banner .badge {
	background: var(--accent-terracotta);
	color: #fff;
	padding: 0.1rem 0.45rem;
	font-size: 0.65rem;
	font-weight: 700;
	border-radius: var(--radius-sm);
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

/* Navigation */
.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: rgba(10, 10, 12, 0.85);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--border-subtle);
	transition: all var(--transition-normal);
}

.site-header.scrolled {
	background: rgba(10, 10, 12, 0.95);
	box-shadow: var(--shadow-sm);
	border-bottom-color: var(--border-gold);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: var(--header-height);
	gap: 2rem;
}

.brand-logo {
	display: flex;
	flex-direction: column;
	text-decoration: none;
}

.brand-logo .logo-title {
	font-family: var(--font-display);
	font-size: 1.45rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	color: var(--fg-primary);
	line-height: 1;
	display: flex;
	align-items: center;
	gap: 0.4rem;
}

.brand-logo .logo-dot {
	width: 5px;
	height: 5px;
	background-color: var(--accent-terracotta);
	border-radius: 50%;
	display: inline-block;
}

.brand-logo .logo-subtitle {
	font-size: 0.65rem;
	letter-spacing: 0.25em;
	color: var(--accent-gold);
	text-transform: uppercase;
	margin-top: 0.25rem;
	font-weight: 500;
}

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

.nav-link {
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: var(--fg-secondary);
	font-weight: 500;
	position: relative;
	padding: 0.4rem 0;
	transition: color var(--transition-fast);
}

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

.nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 1.5px;
	background: var(--accent-gold);
	transition: width var(--transition-normal);
}

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

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

.lang-switch {
	font-size: 0.75rem;
	letter-spacing: 0.1em;
	color: var(--fg-muted);
	border: 1px solid var(--border-subtle);
	padding: 0.35rem 0.65rem;
	border-radius: var(--radius-sm);
	display: flex;
	gap: 0.4rem;
	background: rgba(255, 255, 255, 0.02);
	cursor: pointer;
	transition: all var(--transition-fast);
}

.lang-switch span.active {
	color: var(--accent-gold);
	font-weight: 700;
}

.lang-switch:hover {
	border-color: var(--border-gold);
	color: var(--fg-primary);
}

.mobile-menu-btn {
	display: none;
	flex-direction: column;
	gap: 5px;
	width: 32px;
	height: 32px;
	justify-content: center;
	align-items: center;
	color: var(--fg-primary);
}

.mobile-menu-btn span {
	display: block;
	width: 22px;
	height: 2px;
	background-color: var(--fg-primary);
	transition: all var(--transition-fast);
}

.mobile-menu-btn.open span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.open span:nth-child(2) {
	opacity: 0;
}

.mobile-menu-btn.open span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* Buttons */
.btn-clan {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.65rem;
	font-family: var(--font-sans);
	font-size: 0.85rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	font-weight: 600;
	padding: 0.85rem 1.6rem;
	border-radius: var(--radius-sm);
	cursor: pointer;
	transition: all var(--transition-normal);
	position: relative;
	overflow: hidden;
}

.btn-clan-primary {
	background: var(--accent-terracotta);
	color: #ffffff;
	border: 1px solid var(--accent-terracotta);
	box-shadow: 0 4px 18px rgba(217, 93, 57, 0.28);
}

.btn-clan-primary:hover {
	background: var(--accent-terracotta-hover);
	border-color: var(--accent-terracotta-hover);
	box-shadow: 0 6px 24px rgba(217, 93, 57, 0.45);
	transform: translateY(-1.5px);
}

.btn-clan-secondary {
	background: transparent;
	color: var(--fg-primary);
	border: 1px solid var(--border-medium);
	backdrop-filter: blur(8px);
}

.btn-clan-secondary:hover {
	border-color: var(--accent-gold);
	color: var(--accent-gold-light);
	background: rgba(197, 168, 128, 0.06);
	transform: translateY(-1.5px);
}

.btn-clan-gold {
	background: var(--accent-gold);
	color: #0c0d0e;
	border: 1px solid var(--accent-gold);
	font-weight: 700;
}

.btn-clan-gold:hover {
	background: var(--accent-gold-light);
	border-color: var(--accent-gold-light);
	box-shadow: var(--shadow-gold);
	transform: translateY(-1.5px);
}

.btn-icon-right {
	transition: transform var(--transition-fast);
}

.btn-clan:hover .btn-icon-right {
	transform: translateX(4px);
}

/* Section Header Component */
.section-header {
	margin-bottom: 3.5rem;
	text-align: center;
	position: relative;
}

.section-header.text-left {
	text-align: left;
}

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

.section-tag::before,
.section-tag::after {
	content: '';
	display: inline-block;
	width: 24px;
	height: 1px;
	background: var(--accent-gold-dark);
}

.section-header.text-left .section-tag::after {
	display: none;
}

.section-title {
	font-size: clamp(2rem, 3.5vw, 3.2rem);
	font-weight: 400;
	color: var(--fg-primary);
	margin-bottom: 1rem;
	letter-spacing: -0.01em;
}

.section-title em {
	font-style: italic;
	font-family: var(--font-serif);
	color: var(--accent-gold-light);
}

.section-desc {
	max-width: 620px;
	margin: 0 auto;
	color: var(--fg-muted);
	font-size: 1.05rem;
	line-height: 1.7;
}

.section-header.text-left .section-desc {
	margin: 0;
}

/* ==========================================================================
   1. HERO SECTION
   ========================================================================== */
.hero-section {
	position: relative;
	min-height: calc(100vh - var(--header-height));
	display: flex;
	align-items: center;
	padding: 5rem 0 4rem;
	background: #09090b;
	overflow: hidden;
}

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

.hero-bg-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	opacity: 0.35;
	filter: saturate(1.1) brightness(0.75);
	transform: scale(1.03);
	transition: transform 12s ease-out;
}

.hero-bg-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at 60% 40%, rgba(10, 10, 12, 0.4) 0%, rgba(10, 10, 12, 0.88) 70%, #0a0a0c 100%),
	            linear-gradient(to bottom, rgba(10, 10, 12, 0.6) 0%, transparent 30%, rgba(10, 10, 12, 0.95) 90%, #0a0a0c 100%);
}

.hero-content {
	position: relative;
	z-index: 2;
	max-width: 820px;
}

.hero-pill {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	padding: 0.4rem 0.9rem;
	background: rgba(17, 18, 21, 0.85);
	border: 1px solid var(--border-gold);
	border-radius: var(--radius-full);
	font-size: 0.75rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--accent-gold);
	margin-bottom: 1.75rem;
	backdrop-filter: blur(8px);
}

.hero-pill .pulse-dot {
	width: 7px;
	height: 7px;
	background: #34d399;
	border-radius: 50%;
	box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.25);
}

.hero-brand {
	font-family: var(--font-display);
	font-size: clamp(3rem, 7vw, 5.8rem);
	font-weight: 700;
	letter-spacing: 0.18em;
	color: var(--fg-primary);
	line-height: 0.95;
	margin-bottom: 0.6rem;
	text-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
}

.hero-tagline {
	font-family: var(--font-display);
	font-size: clamp(0.9rem, 2vw, 1.25rem);
	letter-spacing: 0.35em;
	color: var(--accent-gold);
	text-transform: uppercase;
	margin-bottom: 1.75rem;
	font-weight: 500;
}

.hero-headline {
	font-family: var(--font-serif);
	font-size: clamp(1.8rem, 3.8vw, 3rem);
	font-weight: 400;
	color: var(--fg-secondary);
	line-height: 1.25;
	margin-bottom: 1.5rem;
	max-width: 700px;
}

.hero-headline span {
	color: var(--fg-primary);
	font-style: italic;
}

.hero-description {
	font-size: 1.05rem;
	color: var(--fg-muted);
	max-width: 580px;
	margin-bottom: 2.5rem;
	line-height: 1.75;
}

.hero-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 1.1rem;
	align-items: center;
}

.hero-meta-bar {
	margin-top: 4rem;
	padding-top: 2rem;
	border-top: 1px solid var(--border-subtle);
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 1.5rem;
}

.hero-meta-item {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
}

.hero-meta-label {
	font-size: 0.7rem;
	text-transform: uppercase;
	letter-spacing: 0.16em;
	color: var(--fg-muted);
}

.hero-meta-value {
	font-size: 0.95rem;
	color: var(--fg-primary);
	font-weight: 500;
}

/* ==========================================================================
   2. INTRODUCTION SECTION
   ========================================================================== */
.intro-section {
	position: relative;
	background-color: var(--bg-surface);
	border-top: 1px solid var(--border-subtle);
	border-bottom: 1px solid var(--border-subtle);
}

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

.intro-lead-quote {
	font-family: var(--font-serif);
	font-size: clamp(2rem, 3.2vw, 2.9rem);
	line-height: 1.2;
	font-weight: 400;
	color: var(--fg-primary);
	margin-bottom: 1.75rem;
	position: relative;
}

.intro-lead-quote em {
	font-style: italic;
	color: var(--accent-terracotta);
}

.intro-text-body {
	color: var(--fg-secondary);
	font-size: 1.05rem;
	line-height: 1.8;
	margin-bottom: 2rem;
}

.intro-pillars {
	display: grid;
	gap: 1.4rem;
}

.pillar-item {
	display: flex;
	gap: 1.2rem;
	padding: 1.1rem;
	background: rgba(24, 25, 30, 0.6);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-md);
	transition: all var(--transition-normal);
}

.pillar-item:hover {
	border-color: var(--border-gold);
	background: var(--bg-surface-elevated);
	transform: translateX(4px);
}

.pillar-num {
	font-family: var(--font-display);
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--accent-gold);
	line-height: 1;
	padding-top: 0.2rem;
}

.pillar-content h4 {
	font-family: var(--font-sans);
	font-size: 0.95rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--fg-primary);
	margin-bottom: 0.3rem;
}

.pillar-content p {
	font-size: 0.88rem;
	color: var(--fg-muted);
	line-height: 1.5;
}

.intro-visual {
	position: relative;
}

.intro-image-frame {
	position: relative;
	border-radius: var(--radius-md);
	overflow: hidden;
	border: 1px solid var(--border-medium);
	box-shadow: var(--shadow-lg);
}

.intro-image-frame img {
	width: 100%;
	height: 480px;
	object-fit: cover;
	transition: transform 0.8s ease;
}

.intro-image-frame:hover img {
	transform: scale(1.03);
}

.intro-floating-card {
	position: absolute;
	bottom: -1.5rem;
	left: -1.5rem;
	background: rgba(17, 18, 21, 0.95);
	backdrop-filter: blur(12px);
	border: 1px solid var(--border-gold);
	padding: 1.25rem 1.5rem;
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-md);
	max-width: 250px;
}

.intro-floating-card .card-rating {
	color: var(--accent-gold);
	font-size: 1rem;
	margin-bottom: 0.35rem;
}

.intro-floating-card .card-text {
	font-size: 0.8rem;
	color: var(--fg-secondary);
	line-height: 1.4;
	font-style: italic;
}

.intro-floating-card .card-author {
	font-size: 0.7rem;
	color: var(--fg-muted);
	margin-top: 0.4rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

/* ==========================================================================
   3. FEATURED DISHES
   ========================================================================== */
.featured-section {
	background-color: var(--bg-base);
	position: relative;
}

.featured-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
	gap: 2rem;
}

.featured-card {
	background: var(--bg-surface);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-md);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: all var(--transition-normal);
	position: relative;
	cursor: pointer;
}

.featured-card:hover {
	transform: translateY(-6px);
	border-color: var(--border-gold);
	box-shadow: var(--shadow-md);
}

.dish-image-wrapper {
	position: relative;
	height: 240px;
	overflow: hidden;
	background: #18191e;
}

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

.featured-card:hover .dish-image-wrapper img {
	transform: scale(1.06);
}

.dish-badge {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: rgba(10, 10, 12, 0.85);
	backdrop-filter: blur(6px);
	border: 1px solid var(--border-gold);
	color: var(--accent-gold);
	padding: 0.25rem 0.65rem;
	font-size: 0.7rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	font-weight: 600;
	border-radius: var(--radius-sm);
}

.dish-content {
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

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

.dish-title {
	font-family: var(--font-serif);
	font-size: 1.35rem;
	font-weight: 600;
	color: var(--fg-primary);
	line-height: 1.25;
}

.dish-price {
	font-family: var(--font-sans);
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--accent-gold-light);
	white-space: nowrap;
}

.dish-desc {
	font-size: 0.9rem;
	color: var(--fg-muted);
	line-height: 1.6;
	margin-bottom: 1.2rem;
	flex-grow: 1;
}

.dish-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 1rem;
	border-top: 1px solid var(--border-subtle);
	font-size: 0.78rem;
}

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

.dish-tag {
	color: var(--fg-muted);
	font-size: 0.72rem;
}

.dish-cta-hint {
	color: var(--accent-terracotta);
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 0.3rem;
	letter-spacing: 0.05em;
}

/* ==========================================================================
   4. FULL MENU SECTION
   ========================================================================== */
.menu-section {
	background-color: var(--bg-surface);
	border-top: 1px solid var(--border-subtle);
	border-bottom: 1px solid var(--border-subtle);
	position: relative;
}

.menu-disclaimer-box {
	background: rgba(197, 168, 128, 0.05);
	border: 1px dashed var(--border-gold);
	border-radius: var(--radius-md);
	padding: 0.9rem 1.4rem;
	margin-bottom: 2.5rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	flex-wrap: wrap;
}

.menu-disclaimer-box p {
	font-size: 0.85rem;
	color: var(--fg-secondary);
	margin: 0;
}

.menu-disclaimer-box span.badge-demo {
	background: var(--accent-gold-dark);
	color: #fff;
	padding: 0.2rem 0.6rem;
	border-radius: var(--radius-sm);
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

/* Category Tabs */
.menu-tabs-wrapper {
	display: flex;
	justify-content: center;
	gap: 0.6rem;
	margin-bottom: 3rem;
	flex-wrap: wrap;
}

.menu-tab-btn {
	padding: 0.7rem 1.3rem;
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-full);
	background: var(--bg-surface-elevated);
	color: var(--fg-secondary);
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	transition: all var(--transition-fast);
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.menu-tab-btn:hover {
	border-color: var(--border-gold);
	color: var(--fg-primary);
}

.menu-tab-btn.active {
	background: var(--accent-terracotta);
	border-color: var(--accent-terracotta);
	color: #ffffff;
	box-shadow: 0 4px 14px rgba(217, 93, 57, 0.3);
}

.menu-tab-btn .tab-count {
	font-size: 0.7rem;
	opacity: 0.8;
	background: rgba(0, 0, 0, 0.25);
	padding: 0.1rem 0.4rem;
	border-radius: var(--radius-full);
}

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

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

.menu-item-row {
	background: var(--bg-surface-elevated);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-md);
	padding: 1.3rem 1.4rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	transition: all var(--transition-normal);
	position: relative;
}

.menu-item-row:hover {
	border-color: var(--border-gold);
	background: var(--bg-surface-hover);
	transform: translateY(-2px);
}

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

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

.menu-item-price {
	font-family: var(--font-sans);
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--accent-gold-light);
	white-space: nowrap;
}

.menu-item-desc {
	font-size: 0.88rem;
	color: var(--fg-muted);
	line-height: 1.55;
	margin-bottom: 0.75rem;
}

.menu-item-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.5rem;
	padding-top: 0.6rem;
	border-top: 1px dashed var(--border-subtle);
	font-size: 0.75rem;
}

.menu-item-meta {
	display: flex;
	gap: 0.5rem;
	align-items: center;
	color: var(--fg-subtle);
}

.dietary-tag {
	background: rgba(255, 255, 255, 0.05);
	padding: 0.15rem 0.45rem;
	border-radius: var(--radius-sm);
	color: var(--accent-gold);
	font-size: 0.7rem;
}

.add-to-tasting-btn {
	background: transparent;
	border: 1px solid var(--border-medium);
	color: var(--fg-secondary);
	padding: 0.25rem 0.65rem;
	border-radius: var(--radius-sm);
	font-size: 0.75rem;
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
	transition: all var(--transition-fast);
}

.add-to-tasting-btn:hover {
	background: var(--accent-terracotta-subtle);
	border-color: var(--accent-terracotta);
	color: var(--accent-terracotta);
}

.add-to-tasting-btn.added {
	background: var(--accent-gold-dark);
	border-color: var(--accent-gold);
	color: #fff;
}

/* Floating Tasting Selector Pill */
.tasting-bar-float {
	position: fixed;
	bottom: 1.5rem;
	left: 50%;
	transform: translateX(-50%);
	background: rgba(17, 18, 21, 0.95);
	backdrop-filter: blur(14px);
	border: 1px solid var(--accent-gold);
	box-shadow: var(--shadow-lg), 0 0 20px rgba(197, 168, 128, 0.2);
	border-radius: var(--radius-full);
	padding: 0.7rem 1.5rem;
	display: flex;
	align-items: center;
	gap: 1.5rem;
	z-index: 990;
	animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
	from { transform: translate(-50%, 40px); opacity: 0; }
	to { transform: translate(-50%, 0); opacity: 1; }
}

.tasting-bar-info {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	font-size: 0.85rem;
	color: var(--fg-primary);
}

.tasting-count-badge {
	background: var(--accent-terracotta);
	color: #fff;
	font-weight: 700;
	padding: 0.15rem 0.5rem;
	border-radius: var(--radius-full);
	font-size: 0.75rem;
}

/* ==========================================================================
   5. ABOUT SECTION
   ========================================================================== */
.about-section {
	background-color: var(--bg-base);
	position: relative;
	overflow: hidden;
}

.about-grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 4.5rem;
	align-items: center;
}

.about-story-text h3 {
	font-size: clamp(1.8rem, 2.8vw, 2.5rem);
	line-height: 1.25;
	margin-bottom: 1.5rem;
}

.about-story-text p {
	font-size: 1.02rem;
	color: var(--fg-secondary);
	margin-bottom: 1.4rem;
	line-height: 1.8;
}

.about-signature-block {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	margin-top: 2rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--border-subtle);
}

.about-signature-text h5 {
	font-family: var(--font-serif);
	font-size: 1.2rem;
	color: var(--fg-primary);
}

.about-signature-text span {
	font-size: 0.8rem;
	color: var(--accent-gold);
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

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

.about-stat-item {
	padding: 1.2rem 1rem;
	background: var(--bg-surface);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-md);
	text-align: center;
}

.stat-number {
	font-family: var(--font-display);
	font-size: 2rem;
	font-weight: 700;
	color: var(--accent-gold-light);
	line-height: 1;
	margin-bottom: 0.35rem;
}

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

.about-gallery-mosaic {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.2rem;
	position: relative;
}

.mosaic-img-1 {
	grid-column: 1 / 3;
	height: 260px;
	border-radius: var(--radius-md);
	overflow: hidden;
	border: 1px solid var(--border-medium);
}

.mosaic-img-2,
.mosaic-img-3 {
	height: 180px;
	border-radius: var(--radius-md);
	overflow: hidden;
	border: 1px solid var(--border-medium);
}

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

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

/* ==========================================================================
   6. GALLERY SECTION
   ========================================================================== */
.gallery-section {
	background-color: var(--bg-surface);
	border-top: 1px solid var(--border-subtle);
	border-bottom: 1px solid var(--border-subtle);
}

.gallery-filters {
	display: flex;
	justify-content: center;
	gap: 0.75rem;
	margin-bottom: 2.5rem;
	flex-wrap: wrap;
}

.gallery-filter-btn {
	font-size: 0.8rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--fg-muted);
	padding: 0.45rem 1rem;
	border-radius: var(--radius-full);
	border: 1px solid transparent;
	transition: all var(--transition-fast);
}

.gallery-filter-btn:hover {
	color: var(--fg-primary);
}

.gallery-filter-btn.active {
	color: var(--accent-gold-light);
	border-color: var(--border-gold);
	background: var(--bg-surface-elevated);
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: 1.2rem;
}

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

.gallery-item.col-4 {
	grid-column: span 4;
	height: 320px;
}

.gallery-item.col-8 {
	grid-column: span 8;
	height: 320px;
}

.gallery-item.col-6 {
	grid-column: span 6;
	height: 300px;
}

.gallery-item.col-12 {
	grid-column: span 12;
	height: 360px;
}

@media (max-width: 860px) {
	.gallery-item.col-4,
	.gallery-item.col-8,
	.gallery-item.col-6 {
		grid-column: span 12;
		height: 280px;
	}
}

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

.gallery-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(10, 10, 12, 0.9) 0%, rgba(10, 10, 12, 0.2) 60%, transparent 100%);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 1.5rem;
	opacity: 0;
	transition: opacity var(--transition-normal);
}

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

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

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

.gallery-caption-title {
	font-family: var(--font-serif);
	font-size: 1.3rem;
	color: var(--fg-primary);
}

/* ==========================================================================
   7. LOCATION / CONTACT SECTION
   ========================================================================== */
.contact-section {
	background-color: var(--bg-base);
	position: relative;
}

.contact-grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 3.5rem;
}

.contact-card-main {
	background: var(--bg-surface);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-lg);
	padding: 2.5rem;
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.contact-info-list {
	display: grid;
	gap: 1.5rem;
}

.contact-info-item {
	display: flex;
	align-items: flex-start;
	gap: 1.2rem;
}

.contact-icon-box {
	width: 44px;
	height: 44px;
	border-radius: var(--radius-sm);
	background: var(--bg-surface-elevated);
	border: 1px solid var(--border-gold);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--accent-gold);
	flex-shrink: 0;
}

.contact-info-text h5 {
	font-family: var(--font-sans);
	font-size: 0.8rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--fg-muted);
	margin-bottom: 0.25rem;
}

.contact-info-text p,
.contact-info-text a {
	font-size: 1rem;
	color: var(--fg-primary);
	font-weight: 500;
}

.contact-info-text a:hover {
	color: var(--accent-gold-light);
}

.contact-quick-ctas {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	padding-top: 1.5rem;
	border-top: 1px solid var(--border-subtle);
}

.btn-whatsapp {
	background: #25D366;
	color: #0b2512;
	border: 1px solid #25D366;
	font-weight: 700;
}

.btn-whatsapp:hover {
	background: #20bd5a;
	color: #ffffff;
}

/* Stylized Interactive Map Mock */
.map-container-mock {
	position: relative;
	height: 100%;
	min-height: 420px;
	border-radius: var(--radius-lg);
	overflow: hidden;
	border: 1px solid var(--border-medium);
	background: #14151a;
	box-shadow: var(--shadow-md);
}

.map-bg-pattern {
	width: 100%;
	height: 100%;
	background: #13151b;
	position: relative;
	overflow: hidden;
}

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

.pin-circle {
	width: 24px;
	height: 24px;
	background: var(--accent-terracotta);
	border: 3px solid #fff;
	border-radius: 50%;
	box-shadow: 0 0 0 6px rgba(217, 93, 57, 0.3), 0 0 25px rgba(217, 93, 57, 0.6);
	animation: pinBeat 2s infinite ease-in-out;
}

@keyframes pinBeat {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.18); box-shadow: 0 0 0 12px rgba(217, 93, 57, 0.15), 0 0 35px rgba(217, 93, 57, 0.8); }
}

.pin-tooltip {
	background: rgba(10, 10, 12, 0.95);
	backdrop-filter: blur(8px);
	border: 1px solid var(--border-gold);
	padding: 0.5rem 0.9rem;
	border-radius: var(--radius-sm);
	text-align: center;
	white-space: nowrap;
	box-shadow: var(--shadow-md);
}

.pin-tooltip strong {
	display: block;
	font-family: var(--font-display);
	font-size: 0.85rem;
	letter-spacing: 0.12em;
	color: var(--accent-gold-light);
}

.pin-tooltip span {
	font-size: 0.72rem;
	color: var(--fg-muted);
}

.map-actions-bottom {
	position: absolute;
	bottom: 1.2rem;
	left: 1.2rem;
	right: 1.2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: rgba(17, 18, 21, 0.88);
	backdrop-filter: blur(10px);
	border: 1px solid var(--border-subtle);
	padding: 0.75rem 1.2rem;
	border-radius: var(--radius-md);
}

.map-badge-text {
	font-size: 0.75rem;
	color: var(--fg-secondary);
	display: flex;
	align-items: center;
	gap: 0.4rem;
}

/* Instagram Preview Grid */
.instagram-strip {
	margin-top: 4rem;
	padding-top: 3rem;
	border-top: 1px solid var(--border-subtle);
}

.instagram-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1.5rem;
}

.instagram-title {
	font-family: var(--font-sans);
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: var(--fg-muted);
}

.instagram-handle {
	color: var(--accent-gold);
	font-weight: 600;
	font-size: 0.9rem;
}

.instagram-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
}

.instagram-card {
	position: relative;
	height: 180px;
	border-radius: var(--radius-sm);
	overflow: hidden;
	border: 1px solid var(--border-subtle);
}

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

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

.instagram-hover-icon {
	position: absolute;
	inset: 0;
	background: rgba(10, 10, 12, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 1.5rem;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.instagram-card:hover .instagram-hover-icon {
	opacity: 1;
}

/* ==========================================================================
   8. RESERVATION CALL TO ACTION
   ========================================================================== */
.reservation-section {
	background: linear-gradient(to bottom, #0d0e12 0%, #15171e 50%, #0d0e12 100%);
	position: relative;
	overflow: hidden;
	text-align: center;
	border-top: 1px solid var(--border-subtle);
	border-bottom: 1px solid var(--border-subtle);
}

.reservation-pattern-decor {
	position: absolute;
	inset: 0;
	opacity: 0.05;
	background-image: radial-gradient(var(--accent-gold) 1px, transparent 1px);
	background-size: 24px 24px;
	pointer-events: none;
}

.reservation-inner {
	position: relative;
	z-index: 2;
	max-width: 720px;
	margin: 0 auto;
}

.reservation-heading {
	font-family: var(--font-serif);
	font-size: clamp(2.4rem, 4.5vw, 4.2rem);
	font-weight: 400;
	color: var(--fg-primary);
	line-height: 1.15;
	margin-bottom: 1.25rem;
}

.reservation-heading span {
	color: var(--accent-gold-light);
	font-style: italic;
}

.reservation-subtext {
	font-size: 1.1rem;
	color: var(--fg-secondary);
	margin-bottom: 2.5rem;
	line-height: 1.7;
}

.reservation-buttons {
	display: flex;
	justify-content: center;
	gap: 1.2rem;
	flex-wrap: wrap;
}

.reservation-perks {
	margin-top: 3rem;
	display: flex;
	justify-content: center;
	gap: 2.5rem;
	flex-wrap: wrap;
	font-size: 0.82rem;
	color: var(--fg-muted);
	letter-spacing: 0.05em;
}

.reservation-perks span {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
}

.reservation-perks span::before {
	content: '✦';
	color: var(--accent-gold);
}

/* ==========================================================================
   9. FOOTER
   ========================================================================== */
.site-footer {
	background-color: #060708;
	border-top: 1px solid var(--border-subtle);
	padding: 5rem 0 2rem;
	position: relative;
}

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

.footer-brand .brand-logo {
	margin-bottom: 1.2rem;
}

.footer-tagline-text {
	color: var(--fg-muted);
	font-size: 0.9rem;
	line-height: 1.7;
	max-width: 320px;
	margin-bottom: 1.5rem;
}

.demo-concept-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(197, 168, 128, 0.08);
	border: 1px solid var(--border-gold);
	padding: 0.35rem 0.8rem;
	border-radius: var(--radius-sm);
	font-size: 0.72rem;
	color: var(--accent-gold);
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.footer-column h4 {
	font-family: var(--font-display);
	font-size: 0.85rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--fg-primary);
	margin-bottom: 1.5rem;
}

.footer-links {
	list-style: none;
	display: grid;
	gap: 0.75rem;
}

.footer-links a {
	color: var(--fg-muted);
	font-size: 0.88rem;
	transition: color var(--transition-fast);
}

.footer-links a:hover {
	color: var(--accent-gold-light);
	padding-left: 3px;
}

.footer-contact-item {
	font-size: 0.88rem;
	color: var(--fg-muted);
	margin-bottom: 0.75rem;
	line-height: 1.6;
}

.footer-contact-item strong {
	color: var(--fg-secondary);
	display: block;
	margin-bottom: 0.15rem;
}

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

.footer-bottom-links {
	display: flex;
	gap: 1.5rem;
}

/* Back to top button */
.back-to-top {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	border: 1px solid var(--border-subtle);
	background: var(--bg-surface-elevated);
	color: var(--fg-secondary);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all var(--transition-fast);
}

.back-to-top:hover {
	border-color: var(--accent-gold);
	color: var(--accent-gold);
	transform: translateY(-3px);
}

/* ==========================================================================
   MODALS & DRAWERS (Reservation & Tasting Drawer & Dish Quickview)
   ========================================================================== */
.modal-backdrop {
	position: fixed;
	inset: 0;
	background: rgba(4, 5, 7, 0.85);
	backdrop-filter: blur(8px);
	z-index: 2000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.5rem;
	animation: fadeIn 0.25s ease-out;
}

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

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

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

.modal-close-btn:hover {
	background: rgba(255, 255, 255, 0.12);
	color: var(--fg-primary);
	border-color: var(--accent-gold);
}

/* Form Styles inside Reservation */
.clan-form-group {
	margin-bottom: 1.25rem;
}

.clan-form-label {
	display: block;
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--fg-muted);
	margin-bottom: 0.45rem;
}

.clan-input,
.clan-select,
.clan-textarea {
	width: 100%;
	background: #0d0e11;
	border: 1px solid var(--border-medium);
	border-radius: var(--radius-sm);
	padding: 0.75rem 1rem;
	color: var(--fg-primary);
	font-family: var(--font-sans);
	font-size: 0.92rem;
	transition: border-color var(--transition-fast);
}

.clan-input:focus,
.clan-select:focus,
.clan-textarea:focus {
	border-color: var(--accent-gold);
	outline: none;
	background: #121418;
}

.clan-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.reservation-time-slots {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0.5rem;
	margin-top: 0.4rem;
}

.time-slot-btn {
	padding: 0.55rem 0.2rem;
	font-size: 0.8rem;
	text-align: center;
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-sm);
	background: rgba(255, 255, 255, 0.02);
	color: var(--fg-secondary);
	transition: all var(--transition-fast);
}

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

.time-slot-btn.active {
	background: var(--accent-gold);
	color: #0c0d0e;
	border-color: var(--accent-gold);
	font-weight: 700;
}

/* Lightbox Modal */
.lightbox-modal {
	position: fixed;
	inset: 0;
	background: rgba(3, 4, 5, 0.94);
	backdrop-filter: blur(12px);
	z-index: 2500;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 2rem;
}

.lightbox-image-wrap {
	max-width: 900px;
	max-height: 75vh;
	border-radius: var(--radius-md);
	overflow: hidden;
	border: 1px solid var(--border-gold);
	box-shadow: var(--shadow-lg);
}

.lightbox-image-wrap img {
	width: 100%;
	height: 100%;
	max-height: 75vh;
	object-fit: contain;
}

.lightbox-caption {
	margin-top: 1.25rem;
	text-align: center;
}

.lightbox-caption h4 {
	font-family: var(--font-serif);
	font-size: 1.5rem;
	color: var(--fg-primary);
}

.lightbox-caption p {
	font-size: 0.9rem;
	color: var(--accent-gold);
	margin-top: 0.2rem;
}

/* Dish Quickview Modal */
.dish-modal-grid {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 1.8rem;
}

@media (max-width: 650px) {
	.dish-modal-grid {
		grid-template-columns: 1fr;
	}
}

.dish-modal-img {
	height: 100%;
	min-height: 240px;
	border-radius: var(--radius-md);
	overflow: hidden;
	border: 1px solid var(--border-subtle);
}

.dish-modal-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Mobile Drawer Navigation */
.mobile-nav-drawer {
	position: fixed;
	top: var(--header-height);
	left: 0;
	width: 100%;
	height: calc(100vh - var(--header-height));
	background: rgba(10, 10, 12, 0.98);
	backdrop-filter: blur(20px);
	z-index: 999;
	display: flex;
	flex-direction: column;
	padding: 2.5rem 2rem;
	transform: translateY(-100%);
	opacity: 0;
	pointer-events: none;
	transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
	border-bottom: 1px solid var(--border-gold);
}

.mobile-nav-drawer.open {
	transform: translateY(0);
	opacity: 1;
	pointer-events: auto;
}

.mobile-nav-links {
	list-style: none;
	display: grid;
	gap: 1.5rem;
	margin-bottom: 2.5rem;
}

.mobile-nav-links a {
	font-family: var(--font-display);
	font-size: 1.4rem;
	letter-spacing: 0.15em;
	color: var(--fg-primary);
	text-transform: uppercase;
	display: block;
}

.mobile-nav-links a:hover {
	color: var(--accent-gold);
}

/* Responsive Rules */
@media (max-width: 992px) {
	.nav-desktop {
		display: none;
	}
	.mobile-menu-btn {
		display: flex;
	}
	.intro-grid,
	.about-grid,
	.contact-grid {
		grid-template-columns: 1fr;
		gap: 3rem;
	}
	.intro-floating-card {
		position: static;
		margin-top: 1rem;
		max-width: 100%;
	}
	.footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 2.5rem;
	}
}

@media (max-width: 600px) {
	.footer-grid {
		grid-template-columns: 1fr;
	}
	.hero-buttons {
		flex-direction: column;
		width: 100%;
	}
	.hero-buttons .btn-clan {
		width: 100%;
	}
	.reservation-time-slots {
		grid-template-columns: repeat(2, 1fr);
	}
	.instagram-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
