/* ═══════════════════════════════════════════════════════════
   LIMONCELLO — Premium Italian Restaurant Website
   Mobile-First CSS | Italian Luxury Design System
   Verified Business: 20 Ave Tombalbaye, Gombe, Kinshasa
   ═══════════════════════════════════════════════════════════ */

/* ─── CSS VARIABLES ─── */
:root {
  --forest: #0F3D2E;
  --forest-light: #1A5C47;
  --forest-dark: #092A20;
  --cream: #F5F1E8;
  --cream-light: #FAF8F2;
  --cream-dark: #EDE8DB;
  --gold: #C9A961;
  --gold-light: #D4BA7A;
  --gold-dark: #A88B4A;
  --charcoal: #1A1A1A;
  --text: #2C2C2C;
  --text-light: #6B6B6B;
  --text-muted: #999;
  --white: #FFFFFF;
  --off-white: #FEFDF9;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.12);
  --shadow-xl: 0 24px 64px rgba(0,0,0,0.16);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Cormorant Garamond', Garamond, serif;
  --font-sans: 'Montserrat', -apple-system, sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 0.3s var(--ease);
  --transition-slow: 0.6s var(--ease);
}

/* ─── RESET ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; font-size: 16px; }
body {
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--off-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
ul { list-style: none; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ─── PRELOADER ─── */
.preloader {
  position: fixed; inset: 0; z-index: 99999;
  background: var(--forest);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { text-align: center; }
.preloader-logo {
  font-family: var(--font-heading); font-size: 2.5rem; font-weight: 500;
  color: var(--gold); letter-spacing: 0.1em; display: block; margin-bottom: 32px;
}
.preloader-bar {
  width: 200px; height: 2px; background: rgba(255,255,255,0.15);
  border-radius: 2px; overflow: hidden;
}
.preloader-progress {
  width: 0; height: 100%; background: var(--gold);
  animation: preload 1.5s ease forwards;
}
@keyframes preload { to { width: 100%; } }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 500; line-height: 1.2; color: var(--charcoal); }

/* ─── NAVIGATION ─── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 0; transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(254,253,249,0.96);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
  padding: 12px 0;
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { z-index: 1001; display: flex; flex-direction: column; }
.logo-text {
  font-family: var(--font-heading); font-size: 1.4rem; font-weight: 600;
  color: var(--white); letter-spacing: 0.08em; text-transform: uppercase;
  transition: var(--transition);
}
.navbar.scrolled .logo-text { color: var(--forest); }
.logo-sub {
  font-family: var(--font-sans); font-size: 0.6rem; font-weight: 400;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold);
  opacity: 0.8; margin-top: 2px;
}
.nav-menu {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--off-white); flex-direction: column;
  align-items: center; justify-content: center; gap: 28px; z-index: 999;
}
.nav-menu.active { display: flex; }
.nav-link {
  font-family: var(--font-sans); font-size: 0.9rem; font-weight: 500;
  color: var(--charcoal); letter-spacing: 0.1em; text-transform: uppercase;
  position: relative; padding: 4px 0;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1.5px; background: var(--gold);
  transition: var(--transition);
}
.nav-link:hover::after { width: 100%; }

/* Hamburger */
.nav-toggle { display: flex; width: 40px; height: 40px; z-index: 1001; align-items: center; justify-content: center; }
.hamburger { width: 22px; height: 1.5px; background: var(--white); position: relative; transition: var(--transition); }
.hamburger::before, .hamburger::after { content: ''; position: absolute; width: 22px; height: 1.5px; background: var(--white); transition: var(--transition); }
.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }
.nav-toggle.active .hamburger { background: transparent; }
.nav-toggle.active .hamburger::before { top: 0; transform: rotate(45deg); }
.nav-toggle.active .hamburger::after { top: 0; transform: rotate(-45deg); }
.navbar.scrolled .hamburger, .navbar.scrolled .hamburger::before, .navbar.scrolled .hamburger::after { background: var(--charcoal); }

/* Nav Right */
.nav-right { display: flex; align-items: center; gap: 16px; z-index: 1001; }
.nav-lang { display: none; align-items: center; gap: 4px; }
.lang-btn {
  font-family: var(--font-sans); font-size: 0.72rem; font-weight: 600;
  color: rgba(255,255,255,0.6); letter-spacing: 0.05em;
  padding: 4px 6px; transition: var(--transition);
}
.lang-btn.active { color: var(--gold); }
.navbar.scrolled .lang-btn { color: var(--text-muted); }
.navbar.scrolled .lang-btn.active { color: var(--gold); }
.lang-divider { font-size: 0.65rem; color: rgba(255,255,255,0.3); }
.navbar.scrolled .lang-divider { color: var(--text-muted); }
.nav-reserve-btn {
  display: none; font-family: var(--font-sans); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--white); background: var(--gold); padding: 10px 20px;
  border-radius: var(--radius-sm); transition: var(--transition);
}
.nav-reserve-btn:hover { background: var(--gold-dark); }
.navbar.scrolled .nav-reserve-btn { color: var(--white); }

/* ─── HERO ─── */
.hero {
  position: relative; min-height: 100vh; min-height: 100dvh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.08); } }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.4) 50%, rgba(15,61,46,0.7) 100%);
}
.hero-content {
  position: relative; z-index: 2; text-align: center;
  padding: 120px 24px 100px; max-width: 800px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-sans); font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); border: 1px solid rgba(201,169,97,0.4);
  padding: 8px 20px; margin-bottom: 28px; border-radius: 2px;
  opacity: 0; animation: fadeUp 0.8s ease 0.3s forwards;
}
.badge-stars { color: var(--gold); font-size: 0.75rem; }
.badge-rank { color: var(--white); opacity: 0.8; }
.hero-title {
  font-family: var(--font-heading); font-size: 4rem; font-weight: 400;
  color: var(--white); letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 8px;
  opacity: 0; animation: fadeUp 0.8s ease 0.5s forwards;
}
.hero-subtitle {
  font-family: var(--font-sans); font-size: 0.8rem; font-weight: 400;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.7); margin-bottom: 16px;
  opacity: 0; animation: fadeUp 0.8s ease 0.6s forwards;
}
.hero-divider {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  margin: 20px 0;
  opacity: 0; animation: fadeUp 0.8s ease 0.65s forwards;
}
.divider-line { width: 60px; height: 1px; background: var(--gold); opacity: 0.5; }
.divider-icon { color: var(--gold); font-size: 0.5rem; }
.hero-tagline {
  font-family: var(--font-body); font-size: 1.5rem; font-weight: 400;
  color: rgba(255,255,255,0.9); line-height: 1.5;
  opacity: 0; animation: fadeUp 0.8s ease 0.7s forwards;
}
.hero-stats {
  display: flex; align-items: center; justify-content: center; gap: 24px;
  margin: 32px 0;
  opacity: 0; animation: fadeUp 0.8s ease 0.8s forwards;
}
.stat { text-align: center; }
.stat-num { display: block; font-family: var(--font-heading); font-size: 1.8rem; font-weight: 600; color: var(--gold); }
.stat-label { font-family: var(--font-sans); font-size: 0.65rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.stat-divider { width: 1px; height: 32px; background: rgba(255,255,255,0.2); }
.hero-actions {
  display: flex; flex-direction: column; gap: 12px; align-items: center;
  opacity: 0; animation: fadeUp 0.8s ease 0.9s forwards;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-sans); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 16px 36px; border-radius: var(--radius-sm);
  transition: var(--transition); cursor: pointer; white-space: nowrap;
}
.btn-primary {
  background: var(--gold); color: var(--white);
  box-shadow: 0 4px 20px rgba(201,169,97,0.3);
}
.btn-primary:hover {
  background: var(--gold-dark); transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,169,97,0.4);
}
.btn-outline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.4); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--gold); color: var(--gold); }
.btn-full { width: 100%; }
.btn-icon { font-size: 1.1rem; }

/* Hero Scroll */
.hero-scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  opacity: 0; animation: fadeUp 0.8s ease 1.3s forwards;
}
.scroll-text { font-family: var(--font-sans); font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.scroll-mouse {
  width: 24px; height: 38px; border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 12px; display: flex; justify-content: center; padding-top: 8px;
}
.scroll-wheel {
  width: 3px; height: 8px; background: var(--gold); border-radius: 2px;
  animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollDot { 0%,100% { opacity: 1; transform: translateY(0); } 50% { opacity: 0.3; transform: translateY(8px); } }

/* ─── SECTIONS ─── */
.section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block; font-family: var(--font-sans); font-size: 0.72rem;
  font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-heading); font-size: 2.2rem; font-weight: 500;
  color: var(--charcoal); margin-bottom: 12px; max-width: 600px; margin-inline: auto;
}
.section-subtitle {
  font-family: var(--font-body); font-size: 1.1rem; color: var(--text-light);
  max-width: 500px; margin: 0 auto 16px;
}
.section-divider { display: flex; justify-content: center; }
.section-divider span { display: block; width: 50px; height: 1px; background: var(--gold); position: relative; }
.section-divider span::after {
  content: ''; position: absolute; top: -3px; left: 50%; transform: translateX(-50%);
  width: 7px; height: 7px; background: var(--gold); border-radius: 50%;
}

/* ─── ABOUT ─── */
.about { background: var(--off-white); }
.about-grid { display: grid; gap: 48px; align-items: center; }
.about-lead {
  font-family: var(--font-body); font-size: 1.25rem; line-height: 1.7;
  color: var(--forest); font-weight: 500; margin-bottom: 20px;
}
.about-text { font-family: var(--font-body); font-size: 1.05rem; line-height: 1.8; color: var(--text-light); margin-bottom: 16px; }
.about-awards { display: grid; gap: 12px; margin-top: 28px; }
.award {
  display: flex; align-items: center; gap: 14px; padding: 16px 20px;
  background: var(--cream); border-radius: var(--radius-md);
  border: 1px solid rgba(201,169,97,0.15); transition: var(--transition);
}
.award:hover { border-color: rgba(201,169,97,0.4); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.award-icon { font-size: 1.5rem; }
.award-text { display: flex; flex-direction: column; }
.award-text strong { font-family: var(--font-sans); font-size: 0.8rem; font-weight: 600; color: var(--charcoal); letter-spacing: 0.02em; }
.award-text span { font-family: var(--font-body); font-size: 0.9rem; color: var(--text-light); }

/* About Images */
.about-images { position: relative; display: grid; gap: 16px; }
.about-img-main {
  border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/3; box-shadow: var(--shadow-lg);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-images { grid-template-columns: 1fr 1fr; }
.about-img-main { grid-column: span 2; }
.about-img-secondary, .about-img-accent {
  border-radius: var(--radius-md); overflow: hidden;
  aspect-ratio: 1; box-shadow: var(--shadow-md);
}
.about-img-secondary img, .about-img-accent img { width: 100%; height: 100%; object-fit: cover; }

/* ─── EXPERIENCE ─── */
.experience { background: var(--cream); }
.exp-grid { display: grid; gap: 24px; }
.exp-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.04);
}
.exp-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.exp-img { aspect-ratio: 16/10; overflow: hidden; }
.exp-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.exp-card:hover .exp-img img { transform: scale(1.05); }
.exp-content { padding: 28px 24px; }
.exp-content h3 { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 600; color: var(--charcoal); margin-bottom: 10px; }
.exp-content p { font-family: var(--font-body); font-size: 0.95rem; color: var(--text-light); line-height: 1.7; }

/* ─── MENU ─── */
.menu { background: var(--forest); }
.menu .section-tag { color: var(--gold); }
.menu .section-title { color: var(--white); }
.menu .section-subtitle { color: rgba(255,255,255,0.6); }
.menu-tabs {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: 40px;
}
.menu-tab {
  font-family: var(--font-sans); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); padding: 10px 20px;
  border: 1px solid rgba(255,255,255,0.15); border-radius: 100px;
  transition: var(--transition);
}
.menu-tab:hover { border-color: var(--gold); color: var(--gold); }
.menu-tab.active { background: var(--gold); color: var(--white); border-color: var(--gold); }
.menu-content { display: grid; gap: 12px; }
.menu-item {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md); padding: 24px; transition: var(--transition);
}
.menu-item:hover { background: rgba(255,255,255,0.1); border-color: rgba(201,169,97,0.3); box-shadow: 0 4px 24px rgba(0,0,0,0.2); }
.menu-item-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 8px; gap: 16px; }
.menu-item-name { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 600; color: var(--white); flex: 1; }
.menu-item-name .badge {
  font-family: var(--font-sans); font-size: 0.55rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  background: var(--gold); color: var(--white); padding: 2px 8px;
  border-radius: 2px; margin-left: 8px; vertical-align: middle;
}
.menu-item-price { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 600; color: var(--gold); white-space: nowrap; }
.menu-item-desc { font-family: var(--font-body); font-size: 0.9rem; color: rgba(255,255,255,0.55); line-height: 1.6; }
.menu-note {
  text-align: center; margin-top: 32px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.menu-note p { font-family: var(--font-sans); font-size: 0.72rem; color: rgba(255,255,255,0.4); letter-spacing: 0.02em; }

/* ─── GALLERY ─── */
.gallery { background: var(--off-white); }
.gallery-filters {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: 32px;
}
.gallery-filter {
  font-family: var(--font-sans); font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted); padding: 8px 18px;
  border: 1px solid var(--cream-dark); border-radius: 100px;
  transition: var(--transition);
}
.gallery-filter:hover { border-color: var(--forest); color: var(--forest); }
.gallery-filter.active { background: var(--forest); color: var(--white); border-color: var(--forest); }
.gallery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.gallery-item {
  position: relative; border-radius: var(--radius-md); overflow: hidden;
  cursor: pointer; transition: var(--transition);
}
.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1; display: block; }
.gallery-overlay {
  position: absolute; inset: 0; background: rgba(15,61,46,0.6);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  opacity: 0; transition: var(--transition);
}
.gallery-overlay span { font-family: var(--font-sans); font-size: 0.75rem; color: var(--white); letter-spacing: 0.1em; text-transform: uppercase; }
.gallery-overlay-icon { font-size: 1.5rem; color: var(--gold); }

/* ─── REVIEWS ─── */
.reviews { background: var(--cream); }
.reviews-sources {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 16px;
}
.source-badge {
  font-family: var(--font-sans); font-size: 0.7rem; font-weight: 600;
  color: var(--forest); background: var(--white); padding: 6px 14px;
  border-radius: 100px; box-shadow: var(--shadow-sm);
}
.reviews-slider { position: relative; overflow: hidden; }
.reviews-track { display: flex; transition: transform 0.5s var(--ease); }
.review-card { flex: 0 0 100%; padding: 0 12px; }
.review-inner {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px 24px; border: 1px solid rgba(0,0,0,0.04);
  box-shadow: var(--shadow-sm); text-align: center;
}
.review-stars { display: flex; justify-content: center; gap: 3px; margin-bottom: 16px; }
.review-star { color: var(--gold); font-size: 1rem; }
.review-text {
  font-family: var(--font-body); font-size: 1.05rem; font-style: italic;
  color: var(--text-light); line-height: 1.8; margin-bottom: 20px;
}
.review-text::before { content: '\201C'; color: var(--gold); font-size: 2rem; font-family: var(--font-heading); line-height: 0; vertical-align: -0.3em; margin-right: 4px; }
.review-author { font-family: var(--font-heading); font-size: 1rem; font-weight: 600; color: var(--charcoal); }
.review-location { font-family: var(--font-sans); font-size: 0.72rem; color: var(--text-muted); margin-top: 2px; letter-spacing: 0.02em; }
.review-source { font-family: var(--font-sans); font-size: 0.65rem; color: var(--gold); margin-top: 8px; letter-spacing: 0.05em; text-transform: uppercase; }
.reviews-nav {
  display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 28px;
}
.reviews-prev, .reviews-next {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--cream-dark); display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: var(--text-light); transition: var(--transition);
}
.reviews-prev:hover, .reviews-next:hover { border-color: var(--gold); color: var(--gold); }
.reviews-dots { display: flex; gap: 8px; }
.review-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--cream-dark);
  cursor: pointer; transition: var(--transition);
}
.review-dot.active { background: var(--gold); width: 24px; border-radius: 4px; }

/* ─── CONTACT ─── */
.contact { background: var(--off-white); }
.contact-grid { display: grid; gap: 32px; }
.contact-info { display: grid; gap: 16px; }
.contact-card {
  background: var(--white); border-radius: var(--radius-md); padding: 24px;
  border: 1px solid rgba(0,0,0,0.04); display: flex; gap: 16px; align-items: flex-start;
}
.contact-icon { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.contact-card h3 {
  font-family: var(--font-sans); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--charcoal); margin-bottom: 6px;
}
.contact-card p { font-family: var(--font-body); font-size: 0.95rem; color: var(--text-light); line-height: 1.6; }
.contact-link { font-family: var(--font-body); font-size: 1rem; color: var(--gold); font-weight: 600; }
.contact-link:hover { color: var(--gold-dark); }
.hours-grid { display: flex; flex-direction: column; gap: 4px; }
.hours-row {
  display: flex; justify-content: space-between; gap: 16px;
  font-family: var(--font-sans); font-size: 0.75rem; color: var(--text-light);
}
.hours-row span:first-child { font-weight: 500; color: var(--charcoal); }
.closed { color: var(--gold); font-weight: 600; }
.payment-options { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.payment-badge {
  font-family: var(--font-sans); font-size: 0.65rem; font-weight: 600;
  color: var(--forest); background: rgba(15,61,46,0.08);
  padding: 4px 10px; border-radius: 100px; letter-spacing: 0.02em;
}
.contact-cta { margin-top: 8px; }
.contact-map-wrapper {
  border-radius: var(--radius-lg); overflow: hidden; min-height: 300px;
  box-shadow: var(--shadow-md); border: 1px solid rgba(0,0,0,0.06);
}
.contact-map-wrapper iframe { display: block; width: 100%; min-height: 300px; }

/* ─── FOOTER ─── */
.footer { background: var(--charcoal); color: rgba(255,255,255,0.7); padding: 64px 0 32px; }
.footer-top { display: grid; gap: 32px; margin-bottom: 40px; }
.footer-logo {
  font-family: var(--font-heading); font-size: 1.8rem; font-weight: 500;
  color: var(--gold); letter-spacing: 0.08em; text-transform: uppercase; display: block; margin-bottom: 12px;
}
.footer-tagline { font-family: var(--font-body); font-size: 1rem; color: rgba(255,255,255,0.6); margin-bottom: 8px; }
.footer-address { font-family: var(--font-sans); font-size: 0.75rem; color: rgba(255,255,255,0.4); letter-spacing: 0.02em; }
.footer-nav h4 {
  font-family: var(--font-sans); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); margin-bottom: 16px;
}
.footer-nav a {
  display: block; font-family: var(--font-sans); font-size: 0.8rem;
  color: rgba(255,255,255,0.5); padding: 4px 0; transition: var(--transition);
}
.footer-nav a:hover { color: var(--gold); }
.footer-social h4 {
  font-family: var(--font-sans); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); margin-bottom: 16px;
}
.social-links { display: flex; flex-direction: column; gap: 10px; }
.social-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-sans); font-size: 0.8rem; color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.social-link:hover { color: var(--gold); }
.social-link svg { opacity: 0.7; transition: var(--transition); }
.social-link:hover svg { opacity: 1; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px;
  text-align: center;
}
.footer-bottom p { font-family: var(--font-sans); font-size: 0.72rem; color: rgba(255,255,255,0.35); letter-spacing: 0.02em; }
.footer-credit { margin-top: 4px; }

/* ─── STICKY CTA ─── */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  display: flex; padding: 12px 20px; gap: 12px;
  background: rgba(254,253,249,0.96); backdrop-filter: blur(24px);
  border-top: 1px solid rgba(0,0,0,0.06);
  transform: translateY(100%); transition: var(--transition);
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta-btn {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 10px;
  background: #25D366; color: var(--white); padding: 14px 20px;
  border-radius: var(--radius-md); font-family: var(--font-sans);
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase;
  transition: var(--transition);
}
.sticky-cta-btn:hover { background: #1EBE57; transform: translateY(-1px); }
.sticky-call-btn {
  width: 50px; flex-shrink: 0; background: var(--gold); color: var(--white);
  border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.sticky-call-btn:hover { background: var(--gold-dark); }

/* ─── LIGHTBOX ─── */
.lightbox {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(0,0,0,0.94); display: none;
  align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s ease;
}
.lightbox.active { display: flex; opacity: 1; }
.lightbox-content { max-width: 90vw; max-height: 80vh; }
.lightbox-content img { max-width: 100%; max-height: 80vh; border-radius: var(--radius-md); object-fit: contain; }
.lightbox-caption {
  position: absolute; bottom: 60px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-body); font-size: 1rem; color: rgba(255,255,255,0.7);
  text-align: center; letter-spacing: 0.05em;
}
.lightbox-close {
  position: absolute; top: 20px; right: 20px; font-size: 2rem;
  color: var(--white); opacity: 0.6; width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center; transition: var(--transition); z-index: 10;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; color: var(--white); opacity: 0.6;
  width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; transition: var(--transition);
}
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-prev:hover, .lightbox-next:hover { opacity: 1; color: var(--gold); }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Scroll Reveal */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── TABLET (640px) ─── */
@media (min-width: 640px) {
  .hero-title { font-size: 5.5rem; }
  .hero-tagline { font-size: 1.7rem; }
  .hero-actions { flex-direction: row; }
  .hero-stats { gap: 36px; }
  .section { padding: 120px 0; }
  .section-title { font-size: 2.6rem; }
  .about-grid { grid-template-columns: 1fr 1fr; gap: 56px; }
  .exp-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .gallery-item:nth-child(1) { grid-column: span 2; }
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .contact-map-wrapper iframe { min-height: 400px; }
  .footer-top { grid-template-columns: 2fr 1fr 1fr; text-align: left; align-items: start; }
}

/* ─── DESKTOP (1024px) ─── */
@media (min-width: 1024px) {
  .nav-toggle { display: none; }
  .nav-menu { display: flex !important; position: static; background: none; flex-direction: row; gap: 32px; }
  .nav-link { font-size: 0.78rem; }
  .nav-lang { display: flex; }
  .nav-reserve-btn { display: block; }
  .hero-title { font-size: 6.5rem; }
  .hero-subtitle { font-size: 0.85rem; }
  .hero-tagline { font-size: 1.9rem; }
  .hero-stats { gap: 48px; }
  .stat-num { font-size: 2.2rem; }
  .section { padding: 140px 0; }
  .section-title { font-size: 3rem; }
  .about-text { font-size: 1.1rem; }
  .about-awards { grid-template-columns: 1fr 1fr; }
  .exp-grid { grid-template-columns: repeat(4, 1fr); }
  .menu-item { padding: 28px 32px; }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
  .review-card { flex: 0 0 50%; }
  .review-inner { padding: 40px 32px; }
  .sticky-cta { display: none; }
}

/* ─── LARGE DESKTOP (1280px) ─── */
@media (min-width: 1280px) {
  .container { padding: 0 48px; }
  .hero-title { font-size: 7.5rem; }
  .gallery-grid { grid-template-columns: repeat(5, 1fr); }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .gallery-item:nth-child(2) { grid-column: span 1; grid-row: span 2; }
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--charcoal); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dark); }

/* ─── SELECTION ─── */
::selection { background: var(--gold); color: var(--white); }

/* ─── PRINT ─── */
@media print {
  .navbar, .sticky-cta, .hero-scroll, .lightbox, .preloader, .cart-sidebar, .payment-modal { display: none !important; }
  body { color: #000; background: #fff; }
}

/* ═══════════════════════════════════════
   PREMIUM MENU ITEM — Add to Cart
   ═══════════════════════════════════════ */
.menu-item {
  display: flex; flex-direction: column; gap: 4px;
}
.menu-item-header { margin-bottom: 4px; }
.menu-item-bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  margin-top: 8px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.08);
}
.menu-item-tags {
  display: flex; gap: 6px; flex-wrap: wrap;
}
.menu-item-tag {
  font-family: var(--font-sans); font-size: 0.55rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 3px 8px; border-radius: 2px;
}
.menu-item-tag.popular { background: rgba(201,169,97,0.2); color: var(--gold); }
.menu-item-tag.spicy { background: rgba(220,53,69,0.15); color: #e55; }
.menu-item-tag.veg { background: rgba(40,167,69,0.15); color: #4a8; }
.menu-item-tag.new { background: rgba(0,123,255,0.15); color: #48f; }

.add-to-cart-btn {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font-sans); font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold); background: rgba(201,169,97,0.1);
  border: 1px solid rgba(201,169,97,0.3);
  padding: 8px 16px; border-radius: 100px;
  cursor: pointer; transition: var(--transition); white-space: nowrap;
}
.add-to-cart-btn:hover {
  background: var(--gold); color: var(--white); border-color: var(--gold);
  transform: scale(1.02);
}
.add-to-cart-btn.added {
  background: var(--forest); color: var(--white); border-color: var(--forest);
}
.add-to-cart-btn.added::after { content: ' ✓'; }
.add-cart-icon { font-size: 0.9rem; }

/* Cart Item Qty Controls in Menu */
.menu-item-qty {
  display: flex; align-items: center; gap: 8px;
}
.qty-btn {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(201,169,97,0.15); color: var(--gold);
  border: 1px solid rgba(201,169,97,0.3);
  font-family: var(--font-sans); font-size: 0.9rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--transition);
}
.qty-btn:hover { background: var(--gold); color: var(--white); }
.qty-num {
  font-family: var(--font-sans); font-size: 0.85rem; font-weight: 600;
  color: var(--white); min-width: 20px; text-align: center;
}

/* ═══════════════════════════════════════
   NAVIGATION — Cart Button
   ═══════════════════════════════════════ */
.nav-cart-btn {
  position: relative; width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); transition: var(--transition);
}
.nav-cart-btn:hover { color: var(--gold); }
.navbar.scrolled .nav-cart-btn { color: var(--charcoal); }
.navbar.scrolled .nav-cart-btn:hover { color: var(--gold); }
.cart-count {
  position: absolute; top: 2px; right: 2px;
  min-width: 16px; height: 16px; border-radius: 8px;
  background: var(--gold); color: var(--white);
  font-family: var(--font-sans); font-size: 0.55rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: scale(0); transition: var(--transition);
}
.cart-count.visible { opacity: 1; transform: scale(1); }

/* ═══════════════════════════════════════
   CART SIDEBAR
   ═══════════════════════════════════════ */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5);
  z-index: 1100; opacity: 0; visibility: hidden;
  transition: var(--transition);
}
.cart-overlay.active { opacity: 1; visibility: visible; }
.cart-sidebar {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 100%; max-width: 420px; z-index: 1200;
  background: var(--off-white);
  transform: translateX(100%); transition: transform 0.4s var(--ease);
  display: flex; flex-direction: column;
  box-shadow: -8px 0 40px rgba(0,0,0,0.15);
}
.cart-sidebar.active { transform: translateX(0); }
.cart-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px; border-bottom: 1px solid var(--cream-dark);
}
.cart-header h3 { font-family: var(--font-heading); font-size: 1.3rem; color: var(--charcoal); }
.cart-close {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--cream); display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--text-light); transition: var(--transition);
}
.cart-close:hover { background: var(--cream-dark); color: var(--charcoal); }
.cart-items {
  flex: 1; overflow-y: auto; padding: 16px 24px;
}
.cart-empty {
  text-align: center; padding: 60px 20px;
}
.cart-empty-icon { font-size: 3rem; opacity: 0.3; display: block; margin-bottom: 16px; }
.cart-empty p { font-family: var(--font-heading); font-size: 1.1rem; color: var(--text-light); }
.cart-empty-sub { font-family: var(--font-sans); font-size: 0.75rem; color: var(--text-muted); margin-top: 6px; }
.cart-item {
  display: flex; gap: 16px; padding: 16px 0;
  border-bottom: 1px solid var(--cream-dark);
  animation: fadeUp 0.3s ease;
}
.cart-item-info { flex: 1; }
.cart-item-name { font-family: var(--font-heading); font-size: 0.95rem; font-weight: 600; color: var(--charcoal); }
.cart-item-price { font-family: var(--font-sans); font-size: 0.75rem; color: var(--gold); margin-top: 2px; }
.cart-item-controls { display: flex; align-items: center; gap: 10px; margin-top: 8px; }
.cart-qty-btn {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--cream); border: 1px solid var(--cream-dark);
  font-family: var(--font-sans); font-size: 0.85rem; font-weight: 600;
  color: var(--charcoal); cursor: pointer; transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.cart-qty-btn:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }
.cart-qty-num { font-family: var(--font-sans); font-size: 0.85rem; font-weight: 600; min-width: 20px; text-align: center; }
.cart-item-remove {
  font-family: var(--font-sans); font-size: 0.65rem; color: var(--text-muted);
  text-decoration: underline; cursor: pointer; margin-left: 8px;
}
.cart-item-remove:hover { color: #c00; }
.cart-item-line-total {
  font-family: var(--font-heading); font-size: 1rem; font-weight: 600; color: var(--charcoal);
  white-space: nowrap; align-self: center;
}
.cart-footer {
  padding: 20px 24px; border-top: 1px solid var(--cream-dark);
  background: var(--white); display: none; flex-direction: column; gap: 10px;
}
.cart-footer.visible { display: flex; }
.cart-total {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-sans); font-size: 0.8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--charcoal); padding-bottom: 12px;
  border-bottom: 1px solid var(--cream-dark);
}
.cart-total-price { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 600; color: var(--gold); }
.btn-outline-dark {
  background: transparent; color: var(--charcoal);
  border: 1px solid var(--charcoal);
}
.btn-outline-dark:hover { background: var(--charcoal); color: var(--white); }
.cart-order-btn { font-size: 0.78rem; }
.cart-pay-btn { font-size: 0.78rem; }

/* ═══════════════════════════════════════
   PAYMENT MODAL
   ═══════════════════════════════════════ */
.payment-modal {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(8px);
  display: none; align-items: center; justify-content: center;
  padding: 24px;
}
.payment-modal.active { display: flex; }
.payment-modal-inner {
  background: var(--white); border-radius: var(--radius-lg);
  max-width: 480px; width: 100%; max-height: 90vh; overflow-y: auto;
  padding: 32px 28px; position: relative;
  box-shadow: var(--shadow-xl);
  animation: fadeUp 0.4s ease;
}
.payment-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--cream); font-size: 1.4rem;
  color: var(--text-light); display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.payment-close:hover { background: var(--cream-dark); color: var(--charcoal); }
.payment-modal-inner h3 {
  font-family: var(--font-heading); font-size: 1.5rem; color: var(--charcoal);
  margin-bottom: 8px; text-align: center;
}
.payment-amount {
  font-family: var(--font-sans); font-size: 0.85rem; color: var(--text-light);
  text-align: center; margin-bottom: 24px;
}
.payment-amount strong { color: var(--gold); font-size: 1.2rem; }
.payment-methods { display: grid; gap: 10px; }
.payment-method {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px; border: 1px solid var(--cream-dark);
  border-radius: var(--radius-md); background: var(--off-white);
  cursor: pointer; transition: var(--transition); text-align: left;
}
.payment-method:hover { border-color: var(--gold); background: var(--cream); transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.payment-method.selected { border-color: var(--gold); background: rgba(201,169,97,0.08); }
.payment-method-icon {
  width: 44px; height: 44px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-family: var(--font-sans); font-size: 0.8rem; font-weight: 700;
  flex-shrink: 0;
}
.payment-method-info strong { font-family: var(--font-sans); font-size: 0.85rem; color: var(--charcoal); display: block; }
.payment-method-info span { font-family: var(--font-sans); font-size: 0.7rem; color: var(--text-muted); }
.payment-instructions {
  margin-top: 20px; padding: 20px; background: var(--cream);
  border-radius: var(--radius-md); display: none;
}
.payment-instructions.visible { display: block; }
.payment-instruction-content {
  font-family: var(--font-sans); font-size: 0.8rem; color: var(--text); line-height: 1.7;
}
.payment-instruction-content .pay-step {
  display: flex; gap: 12px; margin-bottom: 12px;
}
.payment-instruction-content .pay-step-num {
  width: 24px; height: 24px; border-radius: 50%; background: var(--gold);
  color: var(--white); font-size: 0.7rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.payment-instruction-content .pay-step-text { flex: 1; }
.payment-instruction-content .pay-code {
  font-family: monospace; font-size: 1rem; font-weight: 700;
  background: var(--white); padding: 8px 16px; border-radius: var(--radius-sm);
  border: 1px dashed var(--gold); display: inline-block; margin-top: 4px;
}

/* ═══════════════════════════════════════
   FOOTER — Designer Credit
   ═══════════════════════════════════════ */
.footer-designed {
  font-family: var(--font-sans); font-size: 0.7rem;
  color: rgba(255,255,255,0.3); margin-top: 12px;
  letter-spacing: 0.02em;
}
.footer-designer-link {
  color: var(--gold); font-weight: 600;
  text-decoration: none; position: relative;
}
.footer-designer-link::after {
  content: ''; position: absolute; bottom: -1px; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: var(--transition);
}
.footer-designer-link:hover::after { width: 100%; }

/* ═══════════════════════════════════════
   STICKY CTA — Updated with Cart
   ═══════════════════════════════════════ */
.sticky-cta { gap: 8px; }
.sticky-cart-btn {
  width: 50px; flex-shrink: 0; background: var(--forest);
  color: var(--white); border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  position: relative; transition: var(--transition);
}
.sticky-cart-btn:hover { background: var(--forest-light); }
.sticky-cart-count {
  position: absolute; top: -4px; right: -4px;
  min-width: 16px; height: 16px; border-radius: 8px;
  background: var(--gold); color: var(--white);
  font-family: var(--font-sans); font-size: 0.55rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

/* ═══════════════════════════════════════
   ANIMATIONS — Cart Badge Pop
   ═══════════════════════════════════════ */
@keyframes cartPop {
  0% { transform: scale(1); }
  50% { transform: scale(1.4); }
  100% { transform: scale(1); }
}
.cart-count.pop, .sticky-cart-count.pop { animation: cartPop 0.3s ease; }

/* ═══════════════════════════════════════
   TOAST NOTIFICATION
   ═══════════════════════════════════════ */
.toast {
  position: fixed; bottom: 100px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--forest); color: var(--white);
  font-family: var(--font-sans); font-size: 0.8rem; font-weight: 500;
  padding: 12px 24px; border-radius: 100px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3); z-index: 3000;
  opacity: 0; transition: all 0.3s ease; pointer-events: none;
  white-space: nowrap;
}
.toast.visible { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast .toast-icon { margin-right: 8px; }

/* ═══════════════════════════════════════
   DESKTOP — Show cart sidebar wider
   ═══════════════════════════════════════ */
@media (min-width: 1024px) {
  .cart-sidebar { max-width: 440px; }
  .menu-item-bottom { display: none; }
  .menu-item:hover .menu-item-bottom { display: flex; }
}
