Attributes

Emerging Voice

Founder-originated brand at early stage of market development β€” notable for character, distinctiveness, or founder story before scale or recognition has accumulated.

7 Brands
Emerging Voice

Early and Watching

Emerging Voice brands are documented before the market notices them. That early record β€” of character, of founder story, of distinctive approach β€” becomes the institutional memory that validates Brandmine's discovery intelligence. When these brands grow, Brandmine was there first.

Explore Brands by Location

Interactive map showing brand locations across the Global South. Use proximity search, view regional clusters, and explore nearby brands.

Use arrow keys to pan, plus and minus to zoom. Click markers to view brand details.

Β© OpenStreetMap contributors Β· Β© CARTO

Resilient Brands

Volchok
Resilient Brand

Volchok

A Moscow streetwear label survived 2022 sanctions and a failed store β€” a rival ran out of cash β€” by refusing to raise its β‚½2,600 T-shirt price.

Moscow πŸ‡·πŸ‡Ί
Founded 2014
Founder-Controlled Β· Contract Brand
Vika Gazinskaya
Resilient Brand

Vika Gazinskaya

Every Western stockist this Moscow house built since 2010 vanished in 2022. Her answer: Russia's first fully domestic collection.

Moscow πŸ‡·πŸ‡Ί
Founded 2007
Founder: Vika Gazinskaya
Founder-Controlled Β· Manufacturer
GAPANOVICH
Resilient Brand

GAPANOVICH

A Murmansk label drifted eight years without an identity, then the 2020 lockdown forced a rebuild around real Arctic material logic.

Murmansk πŸ‡·πŸ‡Ί
Founded 2012
Founder-owned Β· Manufacturer
Sashaverse
Resilient Brand

Sashaverse

He built Russia's most exported womenswear label, lost the name when the investor closed it, then rebuilt it β€” this time owning every piece.

Moscow πŸ‡·πŸ‡Ί
Founded 2021
Founder-Controlled Β· Brand House
Fire by Shankar
Resilient Brand

Fire by Shankar

Six-figure rebrand, then a pandemic: 51,790 community meals later, Penang's first Tamil fine-dining restaurant opened on the other side.

George Town, Penang πŸ‡²πŸ‡Ύ
Founded 2023
Founder-Controlled Β· Retail Operator
A La Russe
Resilient Brand

A La Russe

A Moscow house proved "Russian style" meant silk, not matryoshkas β€” then its founder sold it in three pieces rather than watch it collapse.

Moscow πŸ‡·πŸ‡Ί
Founded 2010
Founder-Controlled Β· Vertically Integrated

Profiled Brands

RASSVET

RASSVET

A Moscow skate label lost its home market and its famous co-founder inside two years, and kept the name, the team and the supply chain.

Moscow πŸ‡·πŸ‡Ί
Founded 2016
Founder: Tolia Titaev
Founder-Controlled Β· Contract Brand
website: feature.properties.website || '', tier: feature.properties.contentTier || '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 = 'emerging-voice-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">
Brand City Country Year WebsiteTier
End of Directory Listing (Hub-only feature) */}}

Related Insights