@font-face {
  font-family: 'AGC';
  src: url('assets/fonts/AGC-Regular.ttf') format('truetype');
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'AGC';
  src: url('assets/fonts/AGC-Bold.ttf') format('truetype');
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --c-red-vivid: #A02B2E;
  --c-red-deep: #611516;
  --c-ivory: #F9F7F2;
  --c-ivory-dark: #EAE6DB;
  --c-sand: #D4C4B7;
  --c-charcoal: #171615;
  --c-charcoal-light: #242220;
  --c-gold: #C09E6D;
  
  --bg-primary: var(--c-ivory);
  --bg-secondary: var(--c-ivory-dark);
  --text-primary: var(--c-charcoal);
  --text-secondary: #5C5854;
  --border-color: rgba(23, 22, 21, 0.1);
  --border-light: rgba(249, 247, 242, 0.1);

  --font-agc: 'AGC', sans-serif;
  --font-ar-sans: var(--font-agc);
  --font-ar-serif: var(--font-agc);
  --font-en-sans: var(--font-agc);
  --font-en-serif: var(--font-agc);

  --nav-height: 90px;
  --ease-smooth: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

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

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-ar-sans);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  transition: opacity 0.3s ease;
}

html[dir="ltr"] body {
  font-family: var(--font-en-sans);
}

::selection {
  background-color: var(--c-red-vivid);
  color: #fff;
}

/* Typography */
.font-serif { font-family: var(--font-agc); }
button, input, select, textarea { font-family: var(--font-agc); }

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--c-red-vivid);
  outline-offset: 4px;
}

ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

html[dir="rtl"] .en-only { display: none !important; }
html[dir="ltr"] .ar-only { display: none !important; }

/* Global Utilities */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4vw;
}

.relative { position: relative; }
.z-10 { z-index: 10; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }
.mt-5 { margin-top: 3rem; }

.text-center { text-align: center; }
.text-red { color: var(--c-red-vivid); }
.text-gold { color: var(--c-gold); }
.text-ivory { color: var(--c-ivory); }
.text-secondary { color: var(--text-secondary); }

.bg-charcoal { background-color: var(--c-charcoal); color: var(--c-ivory); }
.bg-charcoal .text-secondary { color: rgba(255,255,255,0.6); }
.bg-primary { background-color: var(--bg-primary); }
.bg-secondary { background-color: var(--bg-secondary); }

.section-pad { padding: 120px 0; }
.section-pad-sm { padding: 80px 0; }

.section-subtitle {
  color: var(--c-gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}
.section-title.large { font-size: 5rem; line-height: 1; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 16px 36px;
  background-color: var(--c-red-vivid);
  color: #fff;
  font-weight: 500;
  font-size: 1.1rem;
  border-radius: 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: transform 0.3s var(--ease-bounce), color 0.3s ease;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: var(--c-red-deep);
  z-index: -1;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s var(--ease-smooth);
}
.btn:hover { transform: translateY(-3px); color: #fff; }
.btn:hover::before { transform: scaleY(1); }

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--c-red-vivid);
  color: var(--c-red-vivid);
}
.btn-outline:hover { color: #fff; }
.btn-outline::before { background: var(--c-red-vivid); }

.btn-light {
  background-color: #fff;
  color: var(--c-charcoal);
}
.btn-light::before { background: var(--c-ivory-dark); }
.btn-light:hover { color: var(--c-charcoal); }

.btn svg {
  width: 20px; height: 20px;
  transition: transform 0.3s ease;
}
html[dir="ltr"] .btn svg { transform: rotate(180deg); }
.btn:hover svg { transform: translateX(-5px); }
html[dir="ltr"] .btn:hover svg { transform: rotate(180deg) translateX(-5px); }


/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; width: 100%;
  height: var(--nav-height);
  z-index: 100;
  transition: all 0.4s var(--ease-smooth);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background-color: rgba(23, 22, 21, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  height: 80px;
}
.site-header.scrolled.light-theme {
  background-color: rgba(249, 247, 242, 0.95);
  border-bottom: 1px solid var(--border-color);
  color: var(--c-charcoal);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.brand-logo img {
  height: 50px;
  width: auto;
  transition: opacity 0.3s ease;
}
.nav-links {
  display: flex;
  gap: 3rem;
  align-items: center;
}
.nav-links a {
  font-weight: 500;
  font-size: 1.05rem;
  position: relative;
  color: #fff;
}
.site-header.light-theme.scrolled .nav-links a {
  color: var(--c-charcoal);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px; right: 0;
  width: 0%; height: 2px;
  background-color: var(--c-gold);
  transition: width 0.3s var(--ease-smooth);
}
html[dir="ltr"] .nav-links a::after { right: auto; left: 0; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: #fff;
}
.site-header.light-theme.scrolled .nav-actions { color: var(--c-charcoal); }

.lang-toggle {
  font-weight: 700;
  font-size: 1rem;
  color: inherit;
  transition: color 0.3s ease;
}
.lang-toggle:hover { color: var(--c-gold); }

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  color: inherit;
}
.mobile-menu-btn svg { width: 32px; height: 32px; }

.mobile-drawer {
  position: fixed;
  top: 0; right: -100%;
  width: 100%; max-width: 400px;
  height: 100vh;
  background-color: var(--c-charcoal);
  color: var(--c-ivory);
  z-index: 1000;
  padding: 80px 40px;
  transition: right 0.6s var(--ease-smooth);
  display: flex;
  flex-direction: column;
}
html[dir="ltr"] .mobile-drawer { right: auto; left: -100%; transition: left 0.6s var(--ease-smooth); }
.mobile-drawer.open { right: 0; }
html[dir="ltr"] .mobile-drawer.open { left: 0; }

.drawer-close {
  position: absolute;
  top: 30px; right: 30px;
  color: var(--c-ivory);
  font-size: 2.5rem;
}
html[dir="ltr"] .drawer-close { right: auto; left: 30px; }

.drawer-links {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-top: 4rem;
}
.drawer-links a {
  font-size: 2.5rem;
  font-family: var(--font-ar-serif);
  color: var(--c-ivory);
  transition: color 0.3s ease;
}
html[dir="ltr"] .drawer-links a { font-family: var(--font-en-serif); }
.drawer-links a:hover, .drawer-links a.active { color: var(--c-gold); }

.drawer-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(5px);
  z-index: 999;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s ease;
}
.drawer-backdrop.open { opacity: 1; pointer-events: auto; }

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: -1;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.1);
  animation: heroZoom 20s linear forwards;
}
@keyframes heroZoom {
  to { transform: scale(1); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(23, 22, 21, 0.9) 0%, rgba(23, 22, 21, 0.3) 50%, rgba(23, 22, 21, 0.6) 100%);
}
.hero-content {
  max-width: 900px;
  margin-top: var(--nav-height);
}
.hero-content .section-title {
  font-size: 5.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.hero-desc {
  font-size: 1.3rem;
  margin-bottom: 3rem;
  opacity: 0.9;
  max-width: 600px;
}
.hero-actions { display: flex; gap: 1.5rem; }

/* Cinematic Intro */
.cinematic-intro {
  text-align: center;
  padding: 150px 0;
  background-color: var(--c-ivory);
}
.cinematic-text {
  font-size: 4rem;
  line-height: 1.2;
  max-width: 1000px;
  margin: 0 auto;
  color: var(--c-charcoal);
}

/* Split Story */
.split-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.split-content { max-width: 500px; }
.split-content p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}
.split-images {
  position: relative;
  aspect-ratio: 4/5;
}
.split-img-main {
  width: 100%; height: 100%;
  object-fit: cover;
}
.split-img-float {
  position: absolute;
  bottom: -10%; right: -10%;
  width: 50%; aspect-ratio: 1;
  object-fit: cover;
  border: 10px solid var(--bg-primary);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
html[dir="ltr"] .split-img-float { right: auto; left: -10%; }

/* Signature Dishes */
.signature-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
}
.sig-card {
  position: relative;
  overflow: hidden;
  background: var(--c-charcoal);
  color: #fff;
  cursor: pointer;
}
.sig-card.large { aspect-ratio: 16/9; }
.sig-card.small { aspect-ratio: 4/5; }
.sig-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-smooth);
}
.sig-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: background 0.4s ease;
}
.sig-card:hover .sig-img { transform: scale(1.05); }
.sig-card:hover .sig-overlay { background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.2)); }
.sig-title { font-size: 2rem; margin-bottom: 0.5rem; }
.sig-price { color: var(--c-gold); font-size: 1.25rem; font-weight: 700; margin-bottom: 1rem; }
.sig-hover-action {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s var(--ease-smooth);
}
.sig-card:hover .sig-hover-action { opacity: 1; transform: translateY(0); }

/* Daily Dish */
.daily-dish {
  position: relative;
  padding: 120px 0;
  background: var(--c-charcoal);
  color: #fff;
  overflow: hidden;
}
.daily-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.92;
  mask-image: none;
  -webkit-mask-image: none;
}
.daily-dish::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(23, 22, 21, 0.28);
  z-index: 1;
}
.daily-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}
.daily-content .section-title { font-size: 4rem; color: var(--c-gold); margin-bottom: 1rem;}

/* Choose Mood */
.mood-tabs {
  display: flex; gap: 1rem; margin-bottom: 3rem; flex-wrap: wrap; justify-content: center;
}
.mood-tab {
  padding: 12px 30px;
  border: 1px solid var(--border-color);
  border-radius: 40px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}
.mood-tab.active, .mood-tab:hover {
  background: var(--c-charcoal);
  color: #fff;
  border-color: var(--c-charcoal);
}
.mood-content {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  animation: fadeIn 0.5s ease;
}
.mood-content.active { display: grid; }
.mood-content[hidden] { display: none; }
@keyframes fadeIn { from{opacity:0; transform:translateY(10px)} to{opacity:1; transform:translateY(0)} }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 300px;
  gap: 1rem;
}
.g-item { position: relative; overflow: hidden; cursor: pointer; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.g-item:hover img { transform: scale(1.05); }
.g-item.wide { grid-column: span 2; }
.g-item.tall { grid-row: span 2; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,0.95);
  z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.lightbox.active { opacity: 1; pointer-events: auto; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; }
.lb-close, .lb-prev, .lb-next {
  position: absolute; background: none; border: none; color: #fff; font-size: 2rem; cursor: pointer;
}
.lb-close { top: 30px; right: 30px; }
.lb-prev { right: 30px; top: 50%; transform: translateY(-50%); }
.lb-next { left: 30px; top: 50%; transform: translateY(-50%); }
html[dir="ltr"] .lb-close { right: auto; left: 30px; }
html[dir="ltr"] .lb-prev { right: auto; left: 30px; }
html[dir="ltr"] .lb-next { left: auto; right: 30px; }

/* Social Proof */
.social-proof { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 2rem; padding: 4rem 0; border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); }
.sp-item { text-align: center; }
.sp-num { font-size: 3rem; font-family: var(--font-ar-serif); color: var(--c-red-vivid); margin-bottom: 0.5rem; display: block; }
html[dir="ltr"] .sp-num { font-family: var(--font-en-serif); }
.sp-label { font-size: 1.1rem; color: var(--text-secondary); }

/* Big CTA */
.big-cta {
  padding: 150px 0;
  text-align: center;
  position: relative;
  color: #fff;
}
.big-cta::before {
  content: ''; position: absolute; inset: 0;
  background: url('assets/restaurant/food/cta-mood-background.webp') center/cover no-mask;
  z-index: -2;
}
.big-cta::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(23, 22, 21, 0.8);
  z-index: -1;
}

/* Footer */
.site-footer { background: var(--c-charcoal); color: #fff; padding: 100px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4rem; margin-bottom: 4rem; }
.footer-logo { height: 60px; margin-bottom: 2rem; }
.footer-title { color: var(--c-gold); font-size: 1.2rem; margin-bottom: 1.5rem; }
.footer-links li { margin-bottom: 1rem; }
.footer-links a { color: rgba(255,255,255,0.7); }
.footer-links a:hover { color: #fff; }
.footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.5); }

/* Custom Cursor */
.custom-cursor {
  position: fixed; top: 0; left: 0;
  width: 12px; height: 12px;
  background: var(--c-red-vivid);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, background 0.3s;
  mix-blend-mode: difference;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: bold; color: #fff;
  opacity: 0; text-transform: uppercase;
}
body:hover .custom-cursor { opacity: 1; }
.custom-cursor.hover { width: 60px; height: 60px; mix-blend-mode: normal; }
.custom-cursor.hover::after { content: attr(data-text); }

/* Cart Drawer */
.cart-drawer {
  position: fixed; top: 0; left: -100%;
  width: 100%; max-width: 450px; height: 100vh; height: 100dvh;
  max-height: 100dvh;
  background: #fff; z-index: 1001;
  padding: 30px; display: flex; flex-direction: column; overflow: hidden;
  box-shadow: 10px 0 30px rgba(0,0,0,0.1);
  transition: left 0.5s var(--ease-smooth);
}
html[dir="ltr"] .cart-drawer { left: auto; right: -100%; box-shadow: -10px 0 30px rgba(0,0,0,0.1); transition: right 0.5s var(--ease-smooth); }
.cart-drawer.open { left: 0; }
html[dir="ltr"] .cart-drawer.open { right: 0; }
.cart-header { display: flex; flex: 0 0 auto; justify-content: space-between; align-items: center; margin-bottom: 1rem; border-bottom: 1px solid var(--border-color); padding-bottom: 1rem; }
.cart-title { font-size: 1.5rem; font-family: var(--font-ar-serif); }
html[dir="ltr"] .cart-title { font-family: var(--font-en-serif); }
.cart-close { font-size: 2rem; }
.cart-items { flex: 1 1 auto; min-height: 0; overflow-y: auto; display: flex; flex-direction: column; gap: 1rem; padding-bottom: 0.5rem; }
.cart-item { display: flex; gap: 1rem; border: 1px solid var(--border-color); padding: 10px; border-radius: 4px; }
.cart-item-img { width: 80px; height: 80px; object-fit: cover; }
.cart-item-info { flex: 1; }
.cart-item-title { font-weight: 700; margin-bottom: 0.2rem; }
.cart-item-price { color: var(--c-red-vivid); font-weight: 500; }
.cart-item-actions { display: flex; align-items: center; gap: 0.5rem; margin-top: 0.5rem; }
.qty-btn { width: 25px; height: 25px; border: 1px solid var(--border-color); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.cart-remove { color: var(--text-secondary); text-decoration: underline; font-size: 0.85rem; margin-right: auto; }
html[dir="ltr"] .cart-remove { margin-right: 0; margin-left: auto; }
.cart-footer { flex: 0 0 auto; margin-top: 1rem; border-top: 1px solid var(--border-color); padding-top: 1rem; background: #fff; }
.cart-total { display: flex; justify-content: space-between; font-size: 1.25rem; font-weight: 700; margin-bottom: 1.5rem; }
.checkout-btn { width: 100%; }

/* Floating Cart & WA */
.floating-cart {
  position: fixed; bottom: 30px; left: 30px;
  background: var(--c-charcoal); color: #fff;
  padding: 12px 24px; border-radius: 40px;
  display: flex; align-items: center; gap: 1rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  cursor: pointer; z-index: 900; transition: transform 0.3s;
}
html[dir="ltr"] .floating-cart { left: auto; right: 30px; }
.floating-cart:hover { transform: translateY(-5px); }
.fc-icon { font-size: 1.2rem; }
.fc-badge { background: var(--c-red-vivid); color: #fff; font-size: 0.8rem; padding: 2px 8px; border-radius: 20px; font-weight: bold; }

.floating-wa {
  position: fixed; bottom: 30px; right: 30px;
  background: rgba(34, 31, 29, 0.94); color: #fff;
  min-height: 56px; border-radius: 2px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  display: flex; align-items: center; justify-content: center;
  gap: 10px;
  box-shadow: 0 14px 40px rgba(20, 15, 12, 0.24);
  z-index: 900; transition: transform 0.3s var(--ease-smooth), background-color 0.3s ease, border-color 0.3s ease;
  text-decoration: none; overflow: hidden;
}
html[dir="ltr"] .floating-wa { right: auto; left: 30px; }
.floating-wa:hover {
  transform: translateY(-4px);
  background: var(--c-red-deep);
  border-color: rgba(255, 255, 255, 0.46);
}
.floating-wa svg { width: 24px; height: 24px; fill: none; flex: 0 0 auto; }
.floating-wa span { display: inline-block; font-weight: 600; white-space: nowrap; }

/* Page Header */
.page-header {
  padding: 200px 0 100px;
  text-align: center;
  background: var(--c-charcoal);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-header-bg {
  position: absolute; inset: 0; opacity: 0.2; object-fit: cover; width: 100%; height: 100%;
}

/* Animations Reveal */
.reveal { opacity: 0; transform: translateY(40px); transition: all 1s var(--ease-smooth); }
.reveal.active { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.clip-reveal { clip-path: polygon(0 0, 100% 0, 100% 0, 0 0); transition: clip-path 1.2s var(--ease-smooth); }
.clip-reveal.active { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }

/* Mobile Bottom Nav */
.mobile-bottom-nav {
  display: none;
  position: fixed; bottom: 0; left: 0; width: 100%;
  background: rgba(249, 247, 242, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border-color);
  z-index: 100;
  padding: 10px 0;
  padding-bottom: env(safe-area-inset-bottom, 10px);
}
.mbn-list { display: flex; justify-content: space-around; align-items: center; }
.mbn-item { display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 0.75rem; font-weight: 500; color: var(--text-secondary); }
.mbn-item.active { color: var(--c-red-vivid); }
.mbn-item svg { width: 24px; height: 24px; }

/* Menu Page */
.menu-search { width: 100%; max-width: 500px; margin: 0 auto 3rem; position: relative; }
.menu-search input { width: 100%; padding: 15px 25px; border: 1px solid var(--border-color); border-radius: 40px; background: transparent; font-family: inherit; font-size: 1.1rem; }
.menu-search svg { position: absolute; left: 20px; top: 50%; transform: translateY(-50%); width: 20px; color: var(--text-secondary); }
html[dir="ltr"] .menu-search svg { left: auto; right: 20px; }
.menu-category-title { font-size: 2.5rem; margin-bottom: 2rem; border-bottom: 1px solid var(--border-color); padding-bottom: 1rem; color: var(--c-gold); }
.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 2rem; margin-bottom: 4rem; }
.menu-item-card { border: 1px solid var(--border-color); background: #fff; transition: transform 0.3s ease; }
.menu-item-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
.menu-item-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.menu-item-body { padding: 1.5rem; }
.menu-item-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 0.5rem; }
.menu-item-name { font-size: 1.25rem; font-weight: 700; }
.menu-item-price { color: var(--c-red-vivid); font-weight: 700; font-size: 1.1rem; white-space: nowrap; margin-right: 10px; }
html[dir="ltr"] .menu-item-price { margin-right: 0; margin-left: 10px; }
.menu-item-desc { color: var(--text-secondary); font-size: 0.95rem; margin-bottom: 1.5rem; line-height: 1.4; }
.menu-item-add { width: 100%; padding: 10px; background: var(--c-ivory-dark); border: none; font-family: inherit; font-weight: 600; transition: background 0.3s, color 0.3s; }
.menu-item-card:hover .menu-item-add { background: var(--c-charcoal); color: #fff; }

/* Contact Form */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.contact-form { background: #fff; padding: 3rem; border: 1px solid var(--border-color); }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.5rem; font-weight: 600; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 15px; border: 1px solid var(--border-color); background: var(--bg-primary); font-family: inherit; font-size: 1rem; }
.form-group textarea { resize: vertical; min-height: 120px; }
.contact-info h3 { font-size: 2rem; margin-bottom: 1.5rem; color: var(--c-gold); }
.info-item { margin-bottom: 2rem; }
.info-item h4 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.info-item p { color: var(--text-secondary); font-size: 1.1rem; }

/* Story Section (About) */
.story-timeline { max-width: 800px; margin: 0 auto; position: relative; }
.story-timeline::before { content: ''; position: absolute; right: 20px; top: 0; bottom: 0; width: 1px; background: var(--border-color); }
html[dir="ltr"] .story-timeline::before { right: auto; left: 20px; }
.timeline-step { display: flex; margin-bottom: 4rem; position: relative; }
.step-num { width: 40px; height: 40px; background: var(--c-gold); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; flex-shrink: 0; z-index: 2; margin-left: 2rem; }
html[dir="ltr"] .step-num { margin-left: 0; margin-right: 2rem; }
.step-content h3 { font-size: 2rem; margin-bottom: 1rem; }
.step-content p { color: var(--text-secondary); font-size: 1.1rem; }
.step-img { margin-top: 1.5rem; width: 100%; height: 250px; object-fit: cover; border-radius: 4px; }

/* Testimonials */
.testimonials { background: var(--c-ivory-dark); padding: 120px 0; text-align: center; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 4rem; }
.testi-card { background: #fff; padding: 3rem 2rem; border: 1px solid var(--border-color); }
.testi-stars { color: var(--c-gold); font-size: 1.2rem; margin-bottom: 1.5rem; }
.testi-quote { font-size: 1.2rem; font-style: italic; margin-bottom: 2rem; color: var(--c-charcoal); }
.testi-author { font-weight: 700; font-size: 1.1rem; }

/* Infinite Customer Reviews */
.reviews-section {
  background: var(--c-ivory-dark);
  padding: 110px 0 120px;
  overflow: hidden;
}
.reviews-heading {
  text-align: center;
  margin-bottom: 3rem;
}
.reviews-viewport {
  width: 100%;
  overflow: hidden;
  direction: ltr;
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.reviews-track {
  display: flex;
  width: max-content;
  gap: 1.5rem;
  direction: ltr;
  animation: reviewsMarquee 42s linear infinite;
  will-change: transform;
}
.review-card {
  width: min(360px, 78vw);
  min-height: 245px;
  flex: 0 0 auto;
  padding: 2rem;
  background: var(--c-ivory);
  border: 1px solid rgba(23, 22, 21, 0.1);
  text-align: right;
  direction: rtl;
  box-shadow: 0 14px 35px rgba(23, 22, 21, 0.06);
}
html[dir="ltr"] .review-card { text-align: left; direction: ltr; }
.review-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.review-stars { color: var(--c-gold); letter-spacing: 0.1em; }
.review-card-top strong { color: var(--c-red-vivid); font-size: 1.05rem; }
.review-card p {
  min-height: 92px;
  color: var(--c-charcoal);
  font-size: 1.08rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.review-name { color: var(--c-charcoal); font-size: 1rem; }
@keyframes reviewsMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 0.75rem)); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
