@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Raleway:wght@300;400;500;600&family=Caveat+Brush&display=swap');

:root {
  --color-bg: #0a0a0a;
  --color-bg-alt: #111111;
  --color-bg-card: #1a1a1a;
  --color-primary: #c8102e;
  --color-primary-dark: #a00d24;
  --color-gold: #d4a855;
  --color-gold-light: #e8c87a;
  --color-text: #f5f0eb;
  --color-text-muted: #a09a92;
  --color-border: rgba(212,168,85,0.2);
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Raleway', sans-serif;
  --font-script: 'Caveat Brush', cursive;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --max-width: 1200px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.8;
  font-weight: 300;
  font-size: 1.05rem;
  overflow-x: hidden;
}

/* ============ LIGHT MODE ============ */
body.light-mode {
  --color-bg: #f5f0eb;
  --color-bg-alt: #ebe5de;
  --color-bg-card: #ffffff;
  --color-primary: #c8102e;
  --color-primary-dark: #a00d24;
  --color-gold: #a07830;
  --color-gold-light: #8a6520;
  --color-text: #1a1a1a;
  --color-text-muted: #555550;
  --color-border: rgba(120,90,40,0.2);
}
body.light-mode .navbar.scrolled {
  background: rgba(245,240,235,0.95);
}
body.light-mode .hero-overlay {
  background: linear-gradient(to bottom, rgba(245,240,235,0.2) 0%, rgba(245,240,235,0.5) 100%);
}
body.light-mode .page-hero .hero-bg { filter: brightness(0.5); }
body.light-mode .whatsapp-fab svg { fill: #fff; }
body.light-mode .nav-hamburger span { background: var(--color-text); }
body.light-mode .map-section iframe,
body.light-mode .contact-map iframe { filter: grayscale(0.2) brightness(1) contrast(1); }
body.light-mode .hero-content .hero-tagline { color: #2a2a2a; }
body.light-mode .hero-subtitle { color: #3a3a3a; }
body.light-mode .btn-outline { border-color: #2a2a2a; color: #2a2a2a; }
body.light-mode .btn-outline:hover { background: #2a2a2a; color: #f5f0eb; }
body.light-mode .scroll-indicator span { border-color: #2a2a2a; }

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* ============ NAVBAR ============ */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 12px 0;
  background: transparent;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(20px);
  padding: 6px 0;
  box-shadow: 0 2px 30px rgba(0,0,0,0.5);
}
.navbar .container {
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo img {
  height: 180px;
  transition: var(--transition);
  filter: brightness(1.1);
}
.navbar.scrolled .nav-logo img { height: 90px; }

.nav-links {
  display: flex; align-items: center; gap: 32px;
}
.nav-links a {
  font-size: 0.85rem; font-weight: 500; letter-spacing: 2px;
  text-transform: uppercase; color: var(--color-text);
  position: relative; transition: var(--transition);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--color-gold);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--color-gold); }
.nav-links a:hover::after { width: 100%; }

.btn-reserve {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: #fff; font-family: var(--font-body);
  font-size: 0.8rem; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; border: none; border-radius: 4px;
  cursor: pointer; transition: var(--transition);
}
.btn-reserve:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(200,16,46,0.4);
}
.btn-reserve svg { width: 18px; height: 18px; }

/* Hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 5px; z-index: 1001;
}
.nav-hamburger span {
  width: 28px; height: 2px; background: var(--color-text);
  transition: var(--transition);
}
.nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============ HERO ============ */
.hero {
  position: relative; height: 100vh; min-height: 600px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.4);
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  0% { transform: scale(1.05); }
  100% { transform: scale(1.15); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.6) 100%);
}
.hero-content {
  position: relative; z-index: 2; text-align: center;
  animation: fadeInUp 1.2s ease-out;
}
.hero-logo {
  width: 320px; max-width: 80vw; margin: 0 auto 24px;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.5)) brightness(1.2);
}
.hero-tagline {
  font-family: var(--font-script);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--color-gold);
  margin-bottom: 8px;
}
.hero-subtitle {
  font-size: 0.9rem; letter-spacing: 4px;
  text-transform: uppercase; color: var(--color-text-muted);
  margin-bottom: 32px;
}
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.btn-outline {
  padding: 14px 32px;
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  font-family: var(--font-body);
  font-size: 0.8rem; font-weight: 500; letter-spacing: 2px;
  text-transform: uppercase; background: transparent;
  cursor: pointer; transition: var(--transition); border-radius: 4px;
}
.btn-outline:hover {
  background: var(--color-gold); color: var(--color-bg);
}

.scroll-indicator {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  z-index: 2; animation: bounce 2s infinite;
}
.scroll-indicator span {
  display: block; width: 24px; height: 24px;
  border-right: 1px solid var(--color-gold);
  border-bottom: 1px solid var(--color-gold);
  transform: rotate(45deg); margin: -8px auto;
  opacity: 0; animation: scrollAnim 2s infinite;
}
.scroll-indicator span:nth-child(2) { animation-delay: 0.2s; }
.scroll-indicator span:nth-child(3) { animation-delay: 0.4s; }
@keyframes scrollAnim {
  0% { opacity: 0; transform: rotate(45deg) translate(-10px, -10px); }
  50% { opacity: 1; }
  100% { opacity: 0; transform: rotate(45deg) translate(10px, 10px); }
}

/* ============ SECTIONS ============ */
.section {
  padding: 100px 0;
  position: relative;
}
.section-header {
  text-align: center; margin-bottom: 60px;
}
.section-label {
  font-family: var(--font-script);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: var(--color-gold);
  display: block; margin-bottom: 8px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700; color: var(--color-text);
  margin-bottom: 16px;
}
.section-divider {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  margin: 0 auto 20px;
}
.section-desc {
  max-width: 600px; margin: 0 auto;
  color: var(--color-text-muted); font-size: 1rem;
}

/* ============ ABOUT ============ */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.about-image {
  position: relative; border-radius: 8px; overflow: hidden;
}
.about-image img {
  width: 100%; height: 500px; object-fit: cover;
  transition: transform 0.6s ease;
}
.about-image:hover img { transform: scale(1.05); }
.about-image::after {
  content: ''; position: absolute; inset: 12px;
  border: 1px solid var(--color-gold); border-radius: 4px;
  pointer-events: none; opacity: 0.4;
}
.about-text h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem; margin-bottom: 20px;
}
.about-text p {
  color: var(--color-text-muted); margin-bottom: 16px;
  font-size: 1rem;
}
.about-features {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin-top: 24px;
}
.about-feature {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9rem; color: var(--color-gold);
}
.about-feature svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ============ MENU ============ */
.menu-categories {
  display: flex; justify-content: center; gap: 12px;
  flex-wrap: wrap; margin-bottom: 48px;
}
.menu-cat-btn {
  padding: 10px 24px;
  background: transparent; border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  font-family: var(--font-body);
  font-size: 0.8rem; font-weight: 500; letter-spacing: 2px;
  text-transform: uppercase; cursor: pointer;
  transition: var(--transition); border-radius: 4px;
}
.menu-cat-btn.active, .menu-cat-btn:hover {
  background: var(--color-gold); color: var(--color-bg);
  border-color: var(--color-gold);
}

.menu-section {
  display: none;
  animation: fadeInUp 0.5s ease;
}
.menu-section.active { display: block; }

.menu-block {
  display: grid; grid-template-columns: 350px 1fr;
  gap: 48px; align-items: start;
  margin-bottom: 48px;
}
.menu-block-image {
  border-radius: 8px; overflow: hidden;
  position: relative;
}
.menu-block-image img {
  width: 100%; height: 400px; object-fit: cover;
  transition: transform 0.6s ease;
}
.menu-block-image:hover img { transform: scale(1.05); }

.menu-items { display: flex; flex-direction: column; gap: 0; }

.menu-item {
  display: flex; justify-content: space-between;
  align-items: baseline; padding: 18px 0;
  border-bottom: 1px solid var(--color-border);
}
.menu-item:last-child { border-bottom: none; }
.menu-item-info { flex: 1; padding-right: 16px; }
.menu-item-name {
  font-family: var(--font-heading);
  font-size: 1.1rem; font-weight: 400;
  margin-bottom: 4px;
}
.menu-item-desc {
  font-size: 0.85rem; color: var(--color-text-muted);
}
.menu-item-price {
  font-family: var(--font-heading);
  font-size: 1.1rem; color: var(--color-gold);
  white-space: nowrap;
}

/* ============ GALLERY ============ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 8px;
}
.gallery-item {
  position: relative; overflow: hidden;
  border-radius: 4px; cursor: pointer;
}
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(6) { grid-column: span 2; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
}
.gallery-item:hover img {
  transform: scale(1.1);
  filter: brightness(0.7);
}
.gallery-item-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(10,10,10,0.5);
  opacity: 0; transition: var(--transition);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay svg {
  width: 40px; height: 40px; color: var(--color-gold);
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.95);
  display: none; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s ease;
}
.lightbox.active { display: flex; opacity: 1; }
.lightbox img {
  max-width: 90vw; max-height: 85vh;
  object-fit: contain; border-radius: 4px;
}
.lightbox-close {
  position: absolute; top: 20px; right: 30px;
  font-size: 2rem; color: #fff; cursor: pointer;
  background: none; border: none;
  transition: var(--transition);
}
.lightbox-close:hover { color: var(--color-gold); }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  font-size: 2rem; color: #fff; cursor: pointer;
  background: rgba(255,255,255,0.1); border: none;
  width: 50px; height: 50px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.lightbox-nav:hover { background: var(--color-gold); color: var(--color-bg); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ============ CONTACT ============ */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contact-info-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 8px; padding: 32px;
}
.contact-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--color-border);
}
.contact-item:last-child { border-bottom: none; }
.contact-item svg {
  width: 24px; height: 24px; color: var(--color-gold);
  flex-shrink: 0; margin-top: 2px;
}
.contact-item h4 {
  font-family: var(--font-heading);
  font-size: 1rem; margin-bottom: 4px;
}
.contact-item p {
  color: var(--color-text-muted); font-size: 0.95rem;
}
.contact-item a {
  color: var(--color-gold); transition: var(--transition);
}
.contact-item a:hover { color: var(--color-gold-light); }

.contact-map {
  border-radius: 8px; overflow: hidden;
  border: 1px solid var(--color-border);
  height: 100%; min-height: 400px;
}
.contact-map iframe {
  width: 100%; height: 100%; border: none;
  filter: grayscale(0.5) brightness(0.8) contrast(1.1);
}

/* ============ MAP SECTION (Home) ============ */
.map-section iframe {
  width: 100%; height: 400px; border: none;
  filter: grayscale(0.5) brightness(0.8) contrast(1.1);
}

/* ============ FOOTER ============ */
.footer {
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  padding: 60px 0 24px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px; margin-bottom: 40px;
}
.footer-logo img { height: 60px; margin-bottom: 16px; }
.footer-desc {
  color: var(--color-text-muted); font-size: 0.85rem;
  max-width: 300px;
}
.footer h4 {
  font-family: var(--font-heading);
  font-size: 1rem; margin-bottom: 20px;
  color: var(--color-gold);
}
.footer-links a {
  display: block; padding: 6px 0;
  color: var(--color-text-muted); font-size: 0.85rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--color-gold); padding-left: 8px; }

.footer-hours p {
  display: flex; justify-content: space-between;
  padding: 6px 0; color: var(--color-text-muted);
  font-size: 0.85rem; border-bottom: 1px solid var(--color-border);
}
.footer-hours p:last-child { border-bottom: none; }
.footer-hours span { color: var(--color-text); }

.footer-bottom {
  text-align: center; padding-top: 24px;
  border-top: 1px solid var(--color-border);
  color: var(--color-text-muted); font-size: 0.8rem;
}
.footer-social {
  display: flex; justify-content: center; gap: 16px;
  margin-bottom: 12px;
}
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--color-border);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--color-gold); border-color: var(--color-gold);
  color: var(--color-bg);
}
.footer-social svg { width: 18px; height: 18px; }

/* ============ AUDIO CONTROL ============ */
.audio-toggle {
  position: fixed; bottom: 24px; left: 24px; z-index: 999;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(26,26,26,0.9);
  border: 1px solid var(--color-border);
  color: var(--color-gold);
  cursor: pointer; display: flex;
  align-items: center; justify-content: center;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}
.audio-toggle:hover {
  background: var(--color-gold); color: var(--color-bg);
  border-color: var(--color-gold);
}
.audio-toggle svg { width: 20px; height: 20px; }
.audio-toggle.muted svg { opacity: 0.4; }

/* ============ THEME TOGGLE ============ */
.theme-toggle {
  position: fixed; bottom: 24px; left: 80px; z-index: 999;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(26,26,26,0.9);
  border: 1px solid var(--color-border);
  color: var(--color-gold);
  cursor: pointer; display: flex;
  align-items: center; justify-content: center;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}
.theme-toggle:hover {
  background: var(--color-gold); color: var(--color-bg);
  border-color: var(--color-gold);
}
.theme-toggle svg { width: 20px; height: 20px; }
.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: block; }
body.light-mode .theme-toggle { background: rgba(255,255,255,0.9); }
body.light-mode .theme-toggle .icon-sun { display: block; }
body.light-mode .theme-toggle .icon-moon { display: none; }

/* ============ WHATSAPP FAB ============ */
.whatsapp-fab {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: pulse 2s infinite;
}
.whatsapp-fab:hover { transform: scale(1.1); }
.whatsapp-fab svg { width: 28px; height: 28px; fill: #fff; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.6); }
}

/* ============ PAGE HERO (Sub pages) ============ */
.page-hero {
  height: 60vh; min-height: 450px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  padding-top: 200px;
}
.page-hero .hero-bg { filter: brightness(0.3); }
.page-hero-content {
  position: relative; z-index: 2; text-align: center;
}
.page-hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 12px;
}
.page-hero-content .breadcrumb {
  font-size: 0.85rem; color: var(--color-text-muted);
  letter-spacing: 2px; text-transform: uppercase;
}
.page-hero-content .breadcrumb a { color: var(--color-gold); }

/* ============ BLOG ============ */
.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.blog-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 8px; overflow: hidden;
  transition: var(--transition);
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  border-color: var(--color-gold);
}
.blog-card-image {
  height: 220px; overflow: hidden;
}
.blog-card-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.blog-card:hover .blog-card-image img { transform: scale(1.08); }
.blog-card-body { padding: 24px; }
.blog-card-meta {
  display: flex; gap: 16px; margin-bottom: 12px;
  font-size: 0.75rem; color: var(--color-text-muted);
  text-transform: uppercase; letter-spacing: 1px;
}
.blog-card-meta span { display: flex; align-items: center; gap: 4px; }
.blog-card-meta svg { width: 14px; height: 14px; }
.blog-card-title {
  font-family: var(--font-heading);
  font-size: 1.2rem; font-weight: 700;
  margin-bottom: 12px; line-height: 1.4;
  transition: var(--transition);
}
.blog-card:hover .blog-card-title { color: var(--color-gold); }
.blog-card-excerpt {
  color: var(--color-text-muted); font-size: 0.85rem;
  line-height: 1.6; margin-bottom: 16px;
  display: -webkit-box; -webkit-line-clamp: 3;
  -webkit-box-orient: vertical; overflow: hidden;
}
.blog-card-link {
  font-size: 0.8rem; font-weight: 500;
  color: var(--color-gold); letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 6px;
  transition: var(--transition);
}
.blog-card-link:hover { gap: 12px; }
.blog-card-link svg { width: 16px; height: 16px; }

/* Blog Post */
.blog-post { max-width: 800px; margin: 0 auto; }
.blog-post-meta {
  display: flex; gap: 20px; margin-bottom: 32px;
  font-size: 0.8rem; color: var(--color-text-muted);
  text-transform: uppercase; letter-spacing: 1px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-border);
}
.blog-post-meta span { display: flex; align-items: center; gap: 6px; }
.blog-post-meta svg { width: 16px; height: 16px; color: var(--color-gold); }
.blog-post h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem; margin: 40px 0 16px;
  color: var(--color-text);
}
.blog-post h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem; margin: 32px 0 12px;
  color: var(--color-gold-light);
}
.blog-post p {
  color: var(--color-text-muted); font-size: 1.05rem;
  margin-bottom: 20px; line-height: 1.9;
}
.blog-post strong { color: var(--color-text); font-weight: 500; }
.blog-post-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 40px; padding-top: 24px;
  border-top: 1px solid var(--color-border);
}
.blog-post-tag {
  padding: 6px 14px; font-size: 0.7rem;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: 20px; color: var(--color-text-muted);
  letter-spacing: 1px; text-transform: uppercase;
}
.blog-post-image {
  width: 100%; border-radius: 8px; overflow: hidden;
  margin: 32px 0;
}
.blog-post-image img {
  width: 100%; height: 400px; object-fit: cover;
}

/* ============ MENU ENHANCEMENTS ============ */
.menu-sub-header {
  font-family: var(--font-heading);
  font-size: 1.4rem; color: var(--color-gold);
  margin: 32px 0 8px; padding-bottom: 8px;
  border-bottom: 1px solid var(--color-border);
}
.menu-sub-header:first-child { margin-top: 0; }
.menu-item-note {
  font-size: 0.8rem; color: var(--color-text-muted);
  font-style: italic; margin-bottom: 12px; line-height: 1.6;
}
.menu-item-variants {
  padding: 0 0 12px 0;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 0;
}
.menu-item-variants .variant-header {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 14px 0 4px;
}
.menu-item-variants .variant-header h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem; font-weight: 400;
}
.menu-item-variants .variant-note {
  font-size: 0.8rem; color: var(--color-text-muted);
  font-style: italic; margin-bottom: 8px; line-height: 1.5;
}
.menu-item-variants .variant-row {
  display: flex; justify-content: space-between;
  align-items: baseline; padding: 6px 0 6px 16px;
}
.menu-item-variants .variant-row span:first-child {
  font-size: 0.95rem; color: var(--color-text);
}
.menu-item-variants .variant-row .menu-item-price {
  font-size: 1rem;
}

/* Language Switcher */
.lang-switcher {
  position: fixed; top: 50%; right: 20px; z-index: 998;
  transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 8px;
}
.lang-btn {
  width: 40px; height: 40px; border-radius: 50%;
  border: 2px solid var(--color-border);
  background: rgba(26,26,26,0.9);
  backdrop-filter: blur(10px);
  cursor: pointer; transition: var(--transition);
  overflow: hidden; padding: 0;
  display: flex; align-items: center; justify-content: center;
}
.lang-btn:hover, .lang-btn.active {
  border-color: var(--color-gold);
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
.lang-btn img { width: 24px; height: 24px; border-radius: 50%; object-fit: cover; }
body.light-mode .lang-btn { background: rgba(255,255,255,0.9); }

/* ============ ANIMATIONS ============ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============ RESPONSIVE ============ */
@media (max-width: 992px) {
  .nav-links { 
    position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
    background: rgba(10,10,10,0.98); backdrop-filter: blur(20px);
    flex-direction: column; justify-content: center;
    padding: 40px; gap: 24px;
    transition: right 0.4s ease;
  }
  .nav-links.active { right: 0; }
  .nav-hamburger { display: flex; }
  .about-grid, .menu-block, .contact-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  .menu-block-image img { height: 250px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .gallery-item:nth-child(6) { grid-column: span 1; }
  .hero-logo { width: 250px; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery-item:nth-child(1) { grid-column: span 1; }
  .section { padding: 60px 0; }
  .hero-cta { flex-direction: column; align-items: center; }
  .about-features { grid-template-columns: 1fr; }
  .menu-categories { gap: 8px; }
  .menu-cat-btn { padding: 8px 16px; font-size: 0.7rem; }
  .blog-grid { grid-template-columns: 1fr; }
}
