/* -------------------------------------------------------------
 * Fusion @ Union - Custom Luxury Design System
 * Matched to Official Brand Logo (Vibrant Red & Deep Charcoal)
 * ------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,400&display=swap');

:root {
  --bg-main: #0a0c10;
  --bg-surface: #121620;
  --bg-card: #181d2a;
  --bg-glass: rgba(18, 22, 32, 0.85);
  
  --primary-red: #dc2626;
  --primary-red-hover: #b91c1c;
  --primary-red-bright: #ef4444;
  --primary-red-glow: rgba(220, 38, 38, 0.25);
  
  --text-bright: #ffffff;
  --text-main: #f1f5f9;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  
  --border-light: rgba(255, 255, 255, 0.08);
  --border-red: rgba(220, 38, 38, 0.35);
  
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-glow: 0 10px 30px -10px rgba(220, 38, 38, 0.4);
  --shadow-card: 0 20px 25px -5px rgba(0, 0, 0, 0.6), 0 8px 10px -6px rgba(0, 0, 0, 0.6);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--text-bright);
  line-height: 1.25;
  font-weight: 600;
}

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Top Bar Announcement */
.top-bar {
  background: linear-gradient(90deg, #7f1d1d, #991b1b, #7f1d1d);
  color: #fee2e2;
  font-size: 0.875rem;
  padding: 0.5rem 0;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.025em;
  border-bottom: 1px solid var(--border-red);
}
.top-bar a {
  text-decoration: underline;
  font-weight: 600;
  color: #ffffff;
}

/* Header & Navbar */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 85px;
}

.brand-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.95);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.25);
  transition: var(--transition);
}

.brand-logo-img:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

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

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-red-bright);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary-red);
  border-radius: 2px;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-red), var(--primary-red-hover));
  color: #ffffff;
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 35px -8px rgba(220, 38, 38, 0.6);
  background: linear-gradient(135deg, var(--primary-red-bright), var(--primary-red));
}

.btn-outline {
  background: transparent;
  border-color: var(--border-red);
  color: var(--primary-red-bright);
}

.btn-outline:hover {
  background: var(--primary-red-glow);
  color: var(--text-bright);
  border-color: var(--primary-red);
}

.btn-secondary {
  background: var(--bg-card);
  border-color: var(--border-light);
  color: var(--text-main);
}

.btn-secondary:hover {
  background: #22293a;
  color: var(--text-bright);
}

.cart-toggle-btn {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  color: var(--text-bright);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.cart-toggle-btn:hover {
  border-color: var(--primary-red);
  color: var(--primary-red-bright);
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--primary-red);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-bright);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 5rem 0;
  background: radial-gradient(circle at 70% 30%, rgba(220, 38, 38, 0.15) 0%, transparent 60%),
              linear-gradient(180deg, var(--bg-main) 0%, #06070a 100%);
  overflow: hidden;
}

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

.hero-content .badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary-red-glow);
  border: 1px solid var(--border-red);
  color: var(--primary-red-bright);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-title {
  font-size: 3.8rem;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-title span {
  background: linear-gradient(135deg, #ffffff 0%, var(--primary-red-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 540px;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
}

.stat-item .stat-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-red-bright);
}

.stat-item .stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Hero Showcase Card */
.hero-showcase {
  position: relative;
}

.showcase-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
}

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

.showcase-card:hover .showcase-img {
  transform: scale(1.04);
}

.showcase-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 12, 16, 0.95) 100%);
}

.dish-tag {
  background: var(--primary-red);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
}

/* Section Title */
.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 3.5rem auto;
}

.section-subtitle {
  color: var(--primary-red-bright);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
  display: block;
}

.section-title {
  font-size: 2.75rem;
  margin-bottom: 1rem;
}

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

/* Section Padding */
.section-padding {
  padding: 6rem 0;
}

/* Menu Grid & Cards */
.menu-controls {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 3rem;
}

.category-pills {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.pill-btn {
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-full);
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.pill-btn:hover, .pill-btn.active {
  background: var(--primary-red);
  color: #ffffff;
  border-color: var(--primary-red);
  font-weight: 600;
}

.menu-search-box {
  width: 100%;
  max-width: 450px;
  position: relative;
}

.menu-search-input {
  width: 100%;
  padding: 0.85rem 1.25rem 0.85rem 2.8rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  color: var(--text-bright);
  font-size: 0.95rem;
  transition: var(--transition);
}

.menu-search-input:focus {
  outline: none;
  border-color: var(--primary-red);
  box-shadow: 0 0 0 3px var(--primary-red-glow);
}

.search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-dim);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

.menu-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.menu-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-red);
  box-shadow: var(--shadow-card);
}

.card-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

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

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

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

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

.item-name {
  font-size: 1.3rem;
  color: var(--text-bright);
}

.item-price {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary-red-bright);
  white-space: nowrap;
}

.item-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.item-tags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.tag-badge {
  font-size: 0.725rem;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  color: var(--text-muted);
}

/* Interactive Form Control Elements */
.option-chips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.chip-radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.chip-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem 0.75rem;
  background: var(--bg-main);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.chip-label:hover {
  border-color: var(--border-red);
  color: var(--text-bright);
  transform: translateY(-2px);
}

.chip-radio:checked + .chip-label {
  background: var(--primary-red-glow);
  border-color: var(--primary-red);
  color: var(--text-bright);
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.25);
}

.time-pills-grid {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.time-pill-label {
  padding: 0.5rem 1rem;
  background: var(--bg-main);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.time-pill-label:hover {
  border-color: var(--primary-red-bright);
  color: var(--text-bright);
}

.chip-radio:checked + .time-pill-label {
  background: var(--primary-red);
  border-color: var(--primary-red);
  color: #ffffff;
  font-weight: 700;
}

.guest-counter {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--bg-main);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 0.4rem 0.75rem;
  width: fit-content;
}

.counter-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  color: var(--text-bright);
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
}

.counter-btn:hover {
  border-color: var(--primary-red);
  color: var(--primary-red-bright);
}

.input-with-icon {
  position: relative;
}

.input-with-icon .input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-dim);
  font-size: 1.1rem;
}

.input-with-icon .form-control {
  padding-left: 2.8rem;
}

/* Reservation & Form Containers */
.reservation-banner {
  background: radial-gradient(circle at top right, rgba(220, 38, 38, 0.15), transparent),
              var(--bg-surface);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.15rem;
  background: var(--bg-main);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  color: var(--text-bright);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-red);
  box-shadow: 0 0 0 3px var(--primary-red-glow);
}



/* ToastTab Style Item Customization Modal */
.item-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.item-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.toast-modal-card {
  background: #ffffff;
  color: #111827;
  max-width: 520px;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
  position: relative;
  display: flex;
  flex-direction: column;
  max-height: 90vh;
  transform: translateY(20px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.item-modal-overlay.active .toast-modal-card {
  transform: translateY(0);
}

.toast-modal-header {
  padding: 1.75rem 2rem 1rem 2rem;
  position: relative;
}

.toast-modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: none;
  font-size: 1.75rem;
  color: #4b5563;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}

.toast-modal-close:hover {
  background: #f3f4f6;
  color: #111827;
}

.toast-item-title {
  font-family: var(--font-sans);
  font-size: 1.65rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
  margin-bottom: 0.35rem;
}

.toast-item-price {
  font-size: 1.3rem;
  font-weight: 600;
  color: #4b5563;
  margin-bottom: 0.75rem;
}

.toast-item-desc {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.5;
}

.toast-modal-body {
  background: #f9fafb;
  padding: 1.5rem 2rem;
  overflow-y: auto;
  flex-grow: 1;
}

.customize-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.customize-group-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  padding: 1.25rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  margin-bottom: 1rem;
}

.group-heading {
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
}

.group-subheading {
  font-size: 0.825rem;
  color: #6b7280;
  margin-bottom: 1rem;
}

.option-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 0;
  border-bottom: 1px solid #f3f4f6;
  cursor: pointer;
}

.option-row:last-child {
  border-bottom: none;
}

.option-info-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: #1f2937;
}

.option-info-price {
  font-size: 0.875rem;
  color: #6b7280;
}

.toast-checkbox {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 2px solid #d1d5db;
  cursor: pointer;
  accent-color: #dc2626;
}

.toast-modal-footer {
  padding: 1.25rem 2rem;
  background: #ffffff;
  border-top: 1px solid #f3f4f6;
}

.toast-add-btn {
  width: 100%;
  background: #e60000;
  color: #ffffff;
  border: none;
  border-radius: 9999px;
  padding: 1rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease;
  box-shadow: 0 4px 14px rgba(230, 0, 0, 0.35);
}

.toast-add-btn:hover {
  background: #cc0000;
  transform: scale(1.01);
}

/* Shopping Cart Drawer */
.cart-drawer-overlay {

  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.cart-drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -450px;
  width: 100%;
  max-width: 440px;
  height: 100vh;
  background: var(--bg-surface);
  border-left: 1px solid var(--border-light);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-drawer-overlay.active .cart-drawer {
  transform: translateX(-450px);
}

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

.cart-body {
  padding: 1.5rem;
  flex-grow: 1;
  overflow-y: auto;
}

.cart-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--border-light);
  background: var(--bg-main);
}

.close-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
}

.close-btn:hover {
  color: var(--primary-red-bright);
}

.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-light);
}

.cart-item-title {
  font-weight: 600;
  color: var(--text-bright);
}

.cart-item-price {
  color: var(--primary-red-bright);
  font-weight: 700;
}

/* Footer */
.footer {
  background: #06070a;
  border-top: 1px solid var(--border-light);
  padding: 5rem 0 2rem 0;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-title {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--text-bright);
}

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

.footer-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--primary-red-bright);
}

.hours-list {
  list-style: none;
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hours-list li strong {
  color: var(--text-main);
}

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  color: var(--text-dim);
}

/* Mobile Drawer Menu */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.mobile-nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  left: -320px;
  width: 85%;
  max-width: 320px;
  height: 100vh;
  background: var(--bg-surface);
  border-right: 1px solid var(--border-red);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 1.75rem 1.5rem;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

.mobile-nav-overlay.active .mobile-nav-drawer {
  transform: translateX(320px);
}

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

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.mobile-nav-link {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
}

.mobile-nav-link:hover, .mobile-nav-link.active {
  color: var(--primary-red-bright);
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-ctas, .hero-stats {
    justify-content: center;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .mobile-toggle {
    display: block;
  }
  .nav-links {
    display: none;
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .reservation-banner {
    padding: 1.75rem;
  }
  .menu-grid {
    grid-template-columns: 1fr;
  }
}

