The Fiji List
Five editorial picks, ranked by the only filter that matters: why you are dining.
Sofitel Oceanfront Grill
Sofitel Fiji's adults-only oceanfront grill — Tripadvisor's top-rated Denarau Island dining, with live music, Mamanuca Islands views, and tableside green-tail lobster.
Bonefish
Port Denarau's institutional waterfront seafood — Bonefish's al-fresco-on-the-water dining and the canonical Denarau-marina sunset dinner.
Vasaqa
Nadi's institutional Fijian-fusion smokehouse — Vasaqa's 8-to-10-hour roasts with palusami pasta and pork gyozas, and the most distinctive contemporary Fijian programme.
Nadina
Port Denarau's institutional traditional-Fijian dining — Nadina's authentic Fijian meals with cassava, dalo chips, rourou, and traditional kovu walu cooking methods.
Castaway
Warwick Fiji's manmade-island restaurant — set on its own private islet adjoining the five-star resort, with palm-thatched roofs and the canonical Castaway-style barefoot-luxury setting.
Best for First Date in Fiji
Intimate, conversation-friendly rooms. Impressive without being intimidating. The tables where first impressions are made.
Bonefish
Port Denarau's institutional waterfront seafood — Bonefish's al-fresco-on-the-water dining and the canonical Denarau-marina sunset dinner.
Vasaqa
Nadi's institutional Fijian-fusion smokehouse — Vasaqa's 8-to-10-hour roasts with palusami pasta and pork gyozas, and the most distinctive contemporary Fijian programme.
Best for Business Dinner in Fiji
Power tables, private rooms, considered wine lists. Where the deal gets done.
Sofitel Oceanfront Grill
Sofitel Fiji's adults-only oceanfront grill — Tripadvisor's top-rated Denarau Island dining, with live music, Mamanuca Islands views, and tableside green-tail lobster.
Bonefish
Port Denarau's institutional waterfront seafood — Bonefish's al-fresco-on-the-water dining and the canonical Denarau-marina sunset dinner.
The Top Five in Fiji
Ranked against a single question: if you had one night in Fiji, where would you go?
Sofitel Oceanfront Grill
Sofitel Fiji's adults-only oceanfront grill — Tripadvisor's top-rated Denarau Island dining, with live music, Mamanuca Islands views, and tableside green-tail lobster.
Bonefish
Port Denarau's institutional waterfront seafood — Bonefish's al-fresco-on-the-water dining and the canonical Denarau-marina sunset dinner.
Vasaqa
Nadi's institutional Fijian-fusion smokehouse — Vasaqa's 8-to-10-hour roasts with palusami pasta and pork gyozas, and the most distinctive contemporary Fijian programme.
Nadina
Port Denarau's institutional traditional-Fijian dining — Nadina's authentic Fijian meals with cassava, dalo chips, rourou, and traditional kovu walu cooking methods.
Castaway
Warwick Fiji's manmade-island restaurant — set on its own private islet adjoining the five-star resort, with palm-thatched roofs and the canonical Castaway-style barefoot-luxury setting.
The Fiji Dining Guide
Fiji is a 333-island nation in the South Pacific — about three hours west of Tahiti, four hours northeast of Auckland, and three hours northeast of Sydney — and is the most accessible Pacific luxury destination from the Australasian and Pacific-Rim markets. The country holds about 920,000 year-round residents across the two main islands (Viti Levu in the south, Vanua Levu in the north). The dining and luxury-resort cluster centres on Denarau Island — the canonical resort-development quarter on Viti Levu's western coast, just outside Nadi (the island's international airport gateway).
The dining is correspondingly serious for the resort-luxury market. Sofitel Fiji's Oceanfront Grill — the adults-only Tripadvisor-top-rated Denarau dining room with live music and Mamanuca Islands views — is the institutional anchor. Bonefish Seafood Restaurant runs the canonical waterfront seafood programme. Vasaqa Smokehouse runs the Fijian-fusion programme. Nadina Authentic Fijian runs the most authentic local-Fijian dining. The Warwick Fiji's Castaway-themed restaurant runs a manmade-island palm-thatched setting.
Neighbourhoods
Reservations & Practical Notes
Sofitel Oceanfront Grill, Bonefish, and Vasaqa Smokehouse must be booked three to four weeks ahead in peak (Australian winter, June–September); one to two weeks shoulder. Most resort restaurants are accessible to non-guests but require advance booking. Dress is Pacific-resort-relaxed — linen rather than tailored, sandals are acceptable everywhere except Sofitel Oceanfront Grill which enforces smart-casual. Tipping is included as 5 per cent service in Fiji; round up another 5 per cent for exceptional service.
For a deeper editorial read, see our ongoing Editorial coverage — including pieces on the Impress Clients,
/* RFK_UNIVERSAL_FILTER_V2 - sitewide occasion filter; reads data-occ + aliases */
(function(){
var SLUGS = {'first-date':'First Date','close-a-deal':'Close a Deal','birthday':'Birthday','impress-clients':'Impress Clients','proposal':'Proposal','solo-dining':'Solo Dining','team-dinner':'Team Dinner'};
var ALIASES = {'date-night':'first-date','anniversary':'birthday','romantic':'proposal'};
function canonical(s){ s=(s||'').trim().toLowerCase(); return ALIASES[s]||s; }
function parseHash(){ var h=(location.hash||'').replace(/^#/,''); var m=h.match(/occasion=([a-z-]+)/i); return m?canonical(m[1]):''; }
function tagSlug(t){
var s = canonical(t.getAttribute('data-occasion')||'');
if (s) return s;
var href = t.getAttribute('href')||'';
var m = href.match(/#occasion=([a-z-]+)/i);
return m ? canonical(m[1]) : '';
}
function isAllTag(t){
if (tagSlug(t)) return false;
var href = (t.getAttribute('href')||'').trim();
if (!href || href === '#' || href === '#all') return true;
return /^\/city\/[^\/?#]+\/?$/.test(href.split('#')[0].split('?')[0]);
}
function cardOccasions(card){
var raw = (card.getAttribute('data-occ') || card.getAttribute('data-occasions') || card.getAttribute('data-occasion') || '');
var set = {};
raw.split(/[,;\s]+/).forEach(function(s){ var c=canonical(s); if(c) set[c]=1; });
return set;
}
function badgeMatches(card, slug){
var label = SLUGS[slug];
if (!label) return false;
var found = false;
card.querySelectorAll('.card-occasion-badge, .card-occasion, .card-occ, .occasion-badge, .card-badge').forEach(function(b){
var t = (b.textContent||'').trim().toLowerCase();
if (t === label.toLowerCase()) found = true;
});
return found;
}
function cardMatches(card, slug){
if (!slug) return true;
var occ = cardOccasions(card);
if (Object.keys(occ).length) return !!occ[slug];
return badgeMatches(card, slug);
}
function ensureEmptyState(){
var grid = document.querySelector('.restaurant-grid');
if (!grid) return;
var msg = document.getElementById('rfk-empty-state');
if (!msg) {
msg = document.createElement('div');
msg.id = 'rfk-empty-state';
msg.style.cssText = 'display:none;padding:48px 24px;margin:24px 0 64px;border:1px solid rgba(201,168,76,0.3);background:rgba(22,20,15,0.5);text-align:center;font-family:DM Sans,sans-serif;color:#B8B5A8;';
grid.parentNode.insertBefore(msg, grid.nextSibling);
}
}
function renderEmptyState(slug, shown){
var msg = document.getElementById('rfk-empty-state');
if (!msg) return;
if (shown > 0 || !slug) { msg.style.display='none'; return; }
var label = SLUGS[slug] || slug;
msg.innerHTML =
' No '+label+' picks listed for this city yet. See the global guide to '+label+' restaurants curated across every city we cover.