Sectors
Spirits Distilleries and producers creating premium vodka, cognac, and other spirits with distinctive character and quality positioning. From craft producers preserving traditional distillation methods to established brands competing in global premium categories, these companies demonstrate that Global South spirits markets offer depth and sophistication that international buyers are only beginning to discover.
5 Brands
Share
Premium Spirits Power Premium spirits represent one of the highest-margin consumer categories globally, with growing demand for authentic regional expressions. These producers offer entry into premium and super-premium categories with strong brand differentiation and export potential across BRICS and beyond.
Explore Brands by Location Interactive map showing brand locations across emerging markets. Use proximity search, view regional clusters, and explore nearby brands.
Interactive map is temporarily unavailable in your region. We're working on a China-compatible solution.
Tier
Clear
All Brands Resilient Profiled Listed Market
Clear
All Markets Abkhazia Argentina Armenia Azerbaijan Bahrain Bangladesh Brazil Cambodia Canada Chile China Colombia Cรดte d'Ivoire Cuba Egypt Ethiopia Georgia Ghana India Indonesia Iran Jordan Kazakhstan Kenya Kyrgyzstan Laos Lebanon Malaysia Mexico Mongolia Morocco Mozambique Myanmar Nepal Nigeria North Korea Pakistan Palestine Peru Philippines Russia Saudi Arabia Senegal Serbia Singapore South Africa Sri Lanka Taiwan Tanzania Thailand Tunisia Turkey United Arab Emirates Uzbekistan Vietnam Attribute
Clear
All Attributes Artisanal Excellence Award Winning Crisis-Tested Emerging Voice Founder-Led Founder-Owned Heritage Brand Legacy Dynasty Premium Positioning Regional Icon Second Generation Vertically Integrated Signals
PREMIUM
Export Ready Scale Ready Succession Ready
Unlock exclusive premium access to filter by Growth Signals
Resilient Brands Every Ismailov asset fell to creditors after his 2009 exile โ except the distributor that had never been pledged as collateral.
russia Russia
wine Wine spirits Spirits
founder-owned Founder-Owned crisis-tested Crisis-Tested premium-positioning Premium Positioning Moscow Moscow Russia
Dismissed as a lollipop, Officer's Choice survived 160 lawsuits to outsell Johnnie Walker โ then listed at 24.85ร oversubscribed.
Mumbai, Maharashtra ๐ฎ๐ณ india India
spirits Spirits
crisis-tested Crisis-Tested founder-owned Founder-Owned regional-icon Regional Icon vertically-integrated Vertically Integrated award-winning Award Winning Mumbai Maharashtra India
A freight forwarder, not a chef, built China's largest Italian food brand. When Shanghai locked down ten venues, his supply chain held.
china China
restaurants Restaurants gourmet-foods Gourmet Foods spirits Spirits
vertically-integrated Vertically Integrated crisis-tested Crisis-Tested founder-owned Founder-Owned premium-positioning Premium Positioning artisanal-excellence Artisanal Excellence Shanghai Shanghai China
Gorbachev closed 600 liquor facilitiesโDerbent preserved its vineyards. 1998 devastated the industryโDerbent survived. 163 years.
Derbent, Republic of Dagestan ๐ท๐บ russia Russia
spirits Spirits wine Wine
crisis-tested Crisis-Tested heritage-brand Heritage Brand regional-icon Regional Icon vertically-integrated Vertically Integrated Derbent Republic of Dagestan Russia
Profiled Brands Named after a prayer in 1993, Luding Group spent 30 years quietly building the production assets that would survive a one-day sanctions shutdown.
russia Russia
wine Wine spirits Spirits
founder-owned Founder-Owned crisis-tested Crisis-Tested vertically-integrated Vertically Integrated premium-positioning Premium Positioning Moscow Russia
website: feature.properties.website || '',
tier: feature.properties.arcStatus || 'basic'
}));
this.loading = false;
// Update hero brand count
const heroCount = document.getElementById('hero-brand-count');
if (heroCount) {
const brandWord = this.brands.length === 1 ? 'brand' : 'Brands';
heroCount.innerHTML = this.brands.length + ' ' + brandWord;
}
console.log('Loaded ' + this.brands.length + ' brands for ' + taxonomyType + ': ' + termSlug);
} catch (error) {
console.error('Error loading brand data:', error);
this.brands = [];
this.loading = false;
}
// Initialize filters from URL parameters
const params = new URLSearchParams(window.location.search);
if (params.has('search')) this.search = params.get('search');
if (params.has('country')) this.country = params.get('country');
if (params.has('tier')) this.brandTier = params.get('tier');
if (params.has('website')) this.hasWebsite = params.get('website') === 'true';
// Watch for filter changes and update URL (debounced for search)
let searchTimeout;
this.$watch('search', () => {
clearTimeout(searchTimeout);
searchTimeout = setTimeout(() => this.updateURL(), 300);
});
this.$watch('country', () => this.updateURL());
this.$watch('brandTier', () => this.updateURL());
this.$watch('hasWebsite', () => this.updateURL());
},
updateURL() {
const params = new URLSearchParams();
if (this.search) params.set('search', this.search);
if (this.country) params.set('country', this.country);
if (this.brandTier) params.set('tier', this.brandTier);
if (this.hasWebsite) params.set('website', 'true');
const newURL = params.toString()
? window.location.pathname + '?' + params.toString()
: window.location.pathname;
window.history.pushState({}, '', newURL);
},
get activeFilterCount() {
let count = 0;
if (this.search) count++;
if (this.country) count++;
if (this.brandTier) count++;
if (this.hasWebsite) count++;
return count;
},
get filteredBrands() {
return this.brands.filter(brand => {
const matchesSearch = !this.search || brand.name.toLowerCase().includes(this.search.toLowerCase());
const matchesCountry = !this.country || brand.countryCode === this.country;
const matchesTier = !this.brandTier || brand.tier === this.brandTier;
const matchesWebsite = !this.hasWebsite || brand.website;
return matchesSearch && matchesCountry && matchesTier && matchesWebsite;
});
},
get sortedBrands() {
return [...this.filteredBrands].sort((a, b) => {
let aVal, bVal;
if (this.sortBy === 'founded') {
aVal = a.founded || 0;
bVal = b.founded || 0;
} else if (this.sortBy === 'tier') {
const tierOrder = { 'complete': 3, 'partial': 2, 'basic': 1 };
aVal = tierOrder[a.tier] || 0;
bVal = tierOrder[b.tier] || 0;
} else if (this.sortBy === 'country') {
aVal = a.country || '';
bVal = b.country || '';
} else if (this.sortBy === 'city') {
aVal = a.city || '';
bVal = b.city || '';
} else {
aVal = a.name || '';
bVal = b.name || '';
}
if (this.sortDirection === 'asc') {
return aVal > bVal ? 1 : aVal < bVal ? -1 : 0;
} else {
return aVal < bVal ? 1 : aVal > bVal ? -1 : 0;
}
});
},
get visibleCount() {
return this.filteredBrands.length;
},
get uniqueCountries() {
return [...new Set(this.brands.map(b => b.countryCode).filter(c => c))].sort();
},
getCountryName(code) {
const countryNames = {
'ru': 'Russia',
'cn': 'China',
'mn': 'Mongolia',
'et': 'Ethiopia',
'in': 'India'
};
return countryNames[code] || code.toUpperCase();
},
clearAllFilters() {
this.search = '';
this.country = '';
this.brandTier = '';
this.hasWebsite = false;
},
removeFilter(filterName) {
if (filterName === 'search') this.search = '';
else if (filterName === 'country') this.country = '';
else if (filterName === 'tier') this.brandTier = '';
else if (filterName === 'website') this.hasWebsite = false;
},
sortTable(column) {
if (this.sortBy === column) {
this.sortDirection = this.sortDirection === 'asc' ? 'desc' : 'asc';
} else {
this.sortBy = column;
this.sortDirection = (column === 'founded') ? 'desc' : 'asc';
}
},
downloadCSV() {
const headers = ['Brand', 'City', 'Country', 'Founded', 'Website', 'Tier'];
let csv = headers.join(',') + '\n';
this.sortedBrands.forEach(brand => {
const rowData = [
this.escapeCSV(brand.name),
this.escapeCSV(brand.city || 'โ'),
this.escapeCSV(brand.country || 'โ'),
this.escapeCSV(brand.founded ? String(brand.founded) : 'โ'),
this.escapeCSV(brand.website || 'โ'),
this.escapeCSV(brand.tier)
];
csv += rowData.join(',') + '\n';
});
const blob = new Blob([csv], { type: 'text/csv;charset=utf-8;' });
const link = document.createElement('a');
const url = URL.createObjectURL(blob);
const today = new Date().toISOString().split('T')[0];
let filename = 'spirits-directory-' + today;
if (this.activeFilterCount > 0) {
filename += '-filtered';
}
filename += '.csv';
link.setAttribute('href', url);
link.setAttribute('download', filename);
link.style.visibility = 'hidden';
document.body.appendChild(link);
link.click();
document.body.removeChild(link);
},
escapeCSV(str) {
if (!str) return '';
const comma = String.fromCharCode(44);
const quote = String.fromCharCode(34);
const newline = String.fromCharCode(10);
if (str.includes(comma) || str.includes(quote) || str.includes(newline)) {
return quote + str.replace(new RegExp(quote, 'g'), quote + quote) + quote;
}
return str;
}
}" class="directory-table-container">
Search:
Country:
Tier:
With Website
Clear all
Loading...
Country
All countries
Brand Tier
All Brands Resilient Profiled Listed
With Website
Brand
City
Country
Year
Website Tier
Loading... No brands found matching your criteria. Visit
โ Resilient
Profiled
Listed
End of Directory Listing (Hub-only feature)
*/}}Related Insights ๐จ๐ณ
๐ท๐บ
๐ฎ๐ณ
๐ฒ๐พ
๐ฒ๐ณ
August 21, 2026
25 min read
A winery listed on a national exchange, a kitchen-appliance maker with ยฅ17 billion in revenue, and a beverage company that reached several billion dollars in revenue all return nothing usable from the platforms built to find private companies.
June 4, 2026
11 min read
Serbia's post-2000 founders โ wine, rakija, organic food โ are now 50โ68. The EU accession clock is running and no one is watching.
๐ฎ๐ณ
April 10, 2026
18 min read
Jim Murray scored Indian single malt 97/100 in 2009 โ third best in the world. The category is still under-indexed fifteen years later.
๐ท๐บ
March 31, 2026
18 min read
When every Western gin brand vanished from Russia in 2022, bartenders didn't wait for replacements. They built 426 of their own.
๐จ๐ณ
March 26, 2026
13 min read
Two reform-era founder cohorts are entering the succession window simultaneously. Only 21% have a plan. Most are invisible to any existing database.
๐ฌ๐ช
March 26, 2026
13 min read
The 2006 Russian embargo erased 87% of Georgia's wine export revenue overnight. The founders who survived are now entering the succession window.
๐ฑ๐ง
March 26, 2026
14 min read
Three crises. Three sectors. Thirty to forty founder-owned brands surviving the unsurvivable โ and no institutional investor has found them.
๐ฒ๐ฝ
March 26, 2026
15 min read
The NAFTA generation built Mexico's most exportable brand sectors. Now they are ageing out โ with almost no succession plans and one buyer already ahead of everyone else.
๐ต๐ช
March 26, 2026
16 min read
Alicorp just paid $72.2M for a superfood brand most investors had never heard of. Six more sectors are waiting. The founders have no plans.
March 25, 2026
13 min read
A generation of founder-politicians who built empires on patronage lost their protection in 2018. One PE deal has ever been done.
๐ง๐ท
March 25, 2026
15 min read
A generation forged by hyperinflation, six currencies, and a savings confiscation is entering the transition window. Most have no plan.
๐ฐ๐ต
March 21, 2026
14 min read
A $12 billion private capital class builds consumer brands where private property cannot legally exist. Succession is structurally impossible.
Coming Soon
Premium Feature: CSV Export CSV export is available to our premium members! This feature allows you to export your filtered search results for offline analysis, presentations, or integration with your own tools. Premium membership includes unlimited CSV exports across all directories.
Close